require 'spec_helper' describe 'migration' do use_helpers :app, :migration before :each do remove_migration :create_account create_migration :create_account do %q{ def index end } end end after :each do # remove_migration :create_account end it "should have an create_account_migration file that contains an index method and two inserted comments" do insert_into_migration :create_account, :content => '# hello' insert_into_migration :create_account do '# goodbye' end read_migration(:create_account).should have_comment 'hello' puts read_migration(:create_account) # root_dir.should have_migration :create_account do |migration_file| # migration_file.should have_method :index # migration_file.should have_comment 'hello' # migration_file.should have_comment 'goodbye' # end end end