require 'spec_helper' Rails::Migration::Assist.orm = :active_record describe 'migration' do use_orm :active_record use_helpers :migration before :each do @root_dir = Rails3::Assist::Directory.rails_root = fixtures_dir remove_migration :create_account if has_migration? :create_account create_migration :create_account do %q{ def self.up end def self.down 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) # puts migration_file_name :create_account # puts existing_file_name :create_account, :migration # @root_dir.should have_migration :create_account # # lambda {existing_migration_file :blip}.should raise_error # # @root_dir.should have_migration :create_account do |migration_file| # migration_file.should have_class_method :up # migration_file.should have_comment 'hello' # migration_file.should have_comment 'goodbye' # end end end