Sha256: eccdd97d62c27eb4766c890d5d7b5aba83c2121e6946888c6f551e3da6eb5e9a

Contents?: true

Size: 542 Bytes

Versions: 3

Compression:

Stored size: 542 Bytes

Contents

require "spec_helper"

describe "The Briefcase" do
  let(:briefcase) { Brief.example }

  it "has a root path" do
    expect(briefcase.root).to be_exist
  end

  it "points to a file repository" do
    expect(briefcase.repository).to be_a(Brief::Repository)
  end

  context "Model Loading" do
    it "loads the model definitions from the models folder" do
    end

    it "loads the model definitions from the DSL in the config file" do
    end
  end

  context "Document Mappings" do
    it "has all of the documents" do

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
brief-1.2.0 spec/lib/brief/briefcase_spec.rb
brief-1.1.0 spec/lib/brief/briefcase_spec.rb
brief-1.0.0 spec/lib/brief/briefcase_spec.rb