blob: 8466562daf444623197a9f23baaae2fed94caf98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require "cases/helper"
module ActiveRecord
class Migration
class LoggerTest < ActiveRecord::TestCase
Migration = Struct.new(:name, :version) do
def migrate direction
# do nothing
end
end
def initialize(*args)
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
|