From 06436b2cade183db3a231150555c4c999ca2827a Mon Sep 17 00:00:00 2001 From: David Workman Date: Tue, 24 May 2011 17:06:40 +0100 Subject: Added a test to check for correct behaviour with no options in add_index command recorder --- activerecord/test/cases/migration/command_recorder_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/cases/migration') diff --git a/activerecord/test/cases/migration/command_recorder_test.rb b/activerecord/test/cases/migration/command_recorder_test.rb index 3e404eaf70..0f79c99e1a 100644 --- a/activerecord/test/cases/migration/command_recorder_test.rb +++ b/activerecord/test/cases/migration/command_recorder_test.rb @@ -92,6 +92,12 @@ module ActiveRecord 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 -- cgit v1.2.3