Skip to content

Commit

Permalink
test should clean up after themselves
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Nov 15, 2013
1 parent 314e2cc commit d5dbc03
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions activerecord/test/cases/migration_test.rb
Expand Up @@ -63,6 +63,7 @@ def teardown

def test_migrator_versions
migrations_path = MIGRATIONS_ROOT + "/valid"
old_path = ActiveRecord::Migrator.migrations_paths
ActiveRecord::Migrator.migrations_paths = migrations_path

ActiveRecord::Migrator.up(migrations_path)
Expand All @@ -74,6 +75,8 @@ def test_migrator_versions
assert_equal 0, ActiveRecord::Migrator.current_version
assert_equal 3, ActiveRecord::Migrator.last_version
assert_equal true, ActiveRecord::Migrator.needs_migration?
ensure
ActiveRecord::Migrator.migrations_paths = old_path
end

def test_create_table_with_force_true_does_not_drop_nonexisting_table
Expand Down

0 comments on commit d5dbc03

Please sign in to comment.