From cb28aee503d0acea027100addbb133552ff192a7 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Sat, 7 Jan 2017 16:39:34 +0530 Subject: Followup of #27596, test output of "run" method as well - #27596 Updated "run" and "migrate" method for returning correct value but only added test for "migrate" method. This commit adds a test for "run" as well. --- activerecord/test/cases/migrator_test.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/activerecord/test/cases/migrator_test.rb b/activerecord/test/cases/migrator_test.rb index cb44c443c7..224e8d1854 100644 --- a/activerecord/test/cases/migrator_test.rb +++ b/activerecord/test/cases/migrator_test.rb @@ -290,7 +290,7 @@ class MigratorTest < ActiveRecord::TestCase assert_equal [[:up, 1], [:up, 2], [:up, 3]], calls end - def test_migrator_output + def test_migrator_output_when_running_multiple_migrations _, migrator = migrator_class(3) result = migrator.migrate("valid") @@ -304,6 +304,13 @@ class MigratorTest < ActiveRecord::TestCase assert_equal(1, result.count) end + def test_migrator_output_when_running_single_migration + _, migrator = migrator_class(1) + result = migrator.run(:up, "valid", 1) + + assert_equal(1, result.version) + end + def test_migrator_rollback _, migrator = migrator_class(3) -- cgit v1.2.3