aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/migration/logger_test.rb
blob: 6e62c1fcbe20d541e55b2314b3b5c03bd5cfa48f (plain) (tree)
1
2
3
4
5
6
7
8
9




                                             


                                             
                                                                         


                             

                                                                

         
               









                                                  


                                                     
                                                                                          
                                                           





                                                   
 
require "cases/helper"

module ActiveRecord
  class Migration
    class LoggerTest < ActiveRecord::TestCase
      # mysql can't roll back ddl changes
      self.use_transactional_fixtures = false

      Migration = Struct.new(:name, :version, :filename, :fingerprint) do
        def migrate direction
          # do nothing
        end
        def filename; "anon.rb"; end
        def fingerprint; "123456789012345678901234567890ab"; end
      end

      def setup
        super
        ActiveRecord::SchemaMigration.create_table
        ActiveRecord::SchemaMigration.delete_all
      end

      def teardown
        super
        ActiveRecord::SchemaMigration.drop_table
      end

      def test_migration_should_be_run_without_logger
        previous_logger = ActiveRecord::Base.logger
        ActiveRecord::Base.logger = nil
        migrations = [Migration.new('a', 1), Migration.new('b', 2), Migration.new('c', 3)]
        ActiveRecord::Migrator.new(:up, migrations).migrate
      ensure
        ActiveRecord::Base.logger = previous_logger
      end
    end
  end
end