Sha256: 403d0985f4097c9a674b50a0636336bfbd3e6fa4d7527bc88331afd21aff2fd6

Contents?: true

Size: 1009 Bytes

Versions: 1

Compression:

Stored size: 1009 Bytes

Contents

require 'spec_helper'

root_dir = RailsAssist::Directory.rails_root

describe 'model helper' do
  use_orm :active_record  
  
  before :each do
    create_model :account do
      %q{
        # hello
        def do_it
        end
      }
    end

    create_model :person, :content => '# hello'
  end

  after :each do
    remove_models :account, :person
  end

  it "should have an :account model file that contains an Account class" do 
    puts read_model :account 
    root_dir.should have_model_file :account do |file|
      file.should have_model_class :account
      file.should have_comment 'hello'
      file.should have_method :do_it
    end
    root_dir.should have_model :account
    root_dir.should_not have_model :user    
  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

1 entries across 1 versions & 1 rubygems

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