Sha256: aacee068a7b61494b8c30e7437ed6a199cc0aca502893cdeb05d5ad596eaec29

Contents?: true

Size: 1.81 KB

Versions: 3

Compression:

Stored size: 1.81 KB

Contents

require 'spec_helper'

describe Erd::Migrator do
  subject { Erd::Migrator }
  after do
    Dir.glob(Rails.root.join('db/migrate/*.rb')).each do |f|
      FileUtils.rm f unless File.basename(f).in? %w(20120428022519_create_authors.rb 20120428022535_create_books.rb)
    end
  end
  describe '.status' do
    context 'when all migrations are up' do
      its(:status) { should == [{:status => 'up', :version => '20120428022519', :name => 'create_authors'}, {:status => 'up', :version => '20120428022535', :name => 'create_books'}] }
    end

    context 'when one is undone' do
      before do
        FileUtils.touch Rails.root.join('db/migrate/20999999999999_create_foobars.rb')
      end
      its(:status) { should == [{:status => 'up', :version => '20120428022519', :name => 'create_authors'}, {:status => 'up', :version => '20120428022535', :name => 'create_books'}, {:status => 'down', :version => '20999999999999', :name => 'create_foobars'}] }
    end
  end

  describe '.run_migrations' do
    before do
      FileUtils.touch Rails.root.join('db/migrate/20999999999999_create_foobars.rb')
      mock(ActiveRecord::Migrator).run(:up, 'db/migrate', 20999999999999)
      mock(ActiveRecord::SchemaDumper).dump(ActiveRecord::Base.connection, anything)
    end
    it 'runs migration by version number' do
      subject.run_migrations(:up => ['20999999999999'])
    end
    it 'runs migration by migration filename' do
      subject.run_migrations(:up => [Rails.root.join('db/migrate/20999999999999_create_foobars.rb')])
    end
  end

  describe '.execute_generate_migration' do
    before do
      stub.proxy(Time).now {|t| stub(t).utc { Time.new 2012, 5, 12, 13, 26 } }
    end
    specify do
      subject.execute_generate_migration('create_foobars').should eq Rails.root.join('db/migrate', '20120512132600_create_foobars.rb').to_s
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
erd-0.1.6 spec/lib/migrator_spec.rb
erd-0.1.5 spec/lib/migrator_spec.rb
erd-0.1.4 spec/lib/migrator_spec.rb