aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-05-27 14:34:05 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-05-27 14:34:05 -0700
commit2a9b3abe193c7d8048b65fb40fba8f4bec697b3f (patch)
tree077da7d54f8a05addd0e6bdeaf907e3294ad186b /activerecord/test/cases
parent985ace4d7fd6a1ed4f0964c3172f1f554a88c769 (diff)
parent06436b2cade183db3a231150555c4c999ca2827a (diff)
downloadrails-2a9b3abe193c7d8048b65fb40fba8f4bec697b3f.tar.gz
rails-2a9b3abe193c7d8048b65fb40fba8f4bec697b3f.tar.bz2
rails-2a9b3abe193c7d8048b65fb40fba8f4bec697b3f.zip
Merge pull request #1229 from workmad3/master
Fix for Issue #1205
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/migration/command_recorder_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/test/cases/migration/command_recorder_test.rb b/activerecord/test/cases/migration/command_recorder_test.rb
index ae531ebb4c..0f79c99e1a 100644
--- a/activerecord/test/cases/migration/command_recorder_test.rb
+++ b/activerecord/test/cases/migration/command_recorder_test.rb
@@ -86,6 +86,18 @@ module ActiveRecord
assert_equal [:remove_index, [:table, {:column => [:one, :two]}]], remove
end
+ def test_invert_add_index_with_name
+ @recorder.record :add_index, [:table, [:one, :two], {:name => "new_index"}]
+ remove = @recorder.inverse.first
+ assert_equal [:remove_index, [:table, {:name => "new_index"}]], remove
+ end
+
+ def test_invert_add_index_with_no_options
+ @recorder.record :add_index, [:table, [:one, :two]]
+ remove = @recorder.inverse.first
+ assert_equal [:remove_index, [:table, {:column => [:one, :two]}]], remove
+ end
+
def test_invert_rename_index
@recorder.record :rename_index, [:old, :new]
rename = @recorder.inverse.first