Sha256: 987822a236d6d988b3e6002f2dc08ea0f58239c529ec629cbe9be92518c11858

Contents?: true

Size: 743 Bytes

Versions: 2

Compression:

Stored size: 743 Bytes

Contents

require 'spec_helper'

describe 'model helper' do
  use_orm :active_record  

  before :each do              
    create_model :account, :content => '# hello'
  end

  after :each do              
    remove_model :account
  end
    
  it "should have an :account model file that contains an Account class" do
    root_dir.should have_model_file :account do |file|
      file.should have_model_class :account
    end
    root_dir.should have_model :account
  end
end

describe 'model helper - no ORM helper' do
  use_helper :model

  before :each do              
    remove_model :account
  end
    
  it "should not be able to create a model without including an ORM helper" do
    lambda {create_model :account}.should raise_error
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails-app-spec-0.2.3 spec/rails_app_spec/matchers/artifact/model_spec.rb
rails-app-spec-0.2.0 spec/rails_app_spec/matchers/artifact/model_spec.rb