aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
diff options
context:
space:
mode:
authorDylan Thacker-Smith <Dylan.Smith@shopify.com>2013-12-17 16:02:52 -0500
committerDylan Thacker-Smith <Dylan.Smith@shopify.com>2014-01-06 10:46:35 -0500
commit06ace1e2b5cdccf67ff969ff0d355fd87f46dcf0 (patch)
treeaa5eaa81b94577e3d2fd5aed435c29c642bba748 /activerecord/test/cases/migration_test.rb
parentf2b80a41b5c163b32dfdd0fa797466543c6ec0e9 (diff)
downloadrails-06ace1e2b5cdccf67ff969ff0d355fd87f46dcf0.tar.gz
rails-06ace1e2b5cdccf67ff969ff0d355fd87f46dcf0.tar.bz2
rails-06ace1e2b5cdccf67ff969ff0d355fd87f46dcf0.zip
activerecord: Initialize Migration with version from MigrationProxy.
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r--activerecord/test/cases/migration_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index ebcc778b8b..0363bf1048 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -79,6 +79,10 @@ class MigrationTest < ActiveRecord::TestCase
ActiveRecord::Migrator.migrations_paths = old_path
end
+ def test_migration_version
+ ActiveRecord::Migrator.run(:up, MIGRATIONS_ROOT + "/version_check", 20131219224947)
+ end
+
def test_create_table_with_force_true_does_not_drop_nonexisting_table
if Person.connection.table_exists?(:testings2)
Person.connection.drop_table :testings2