aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration/command_recorder_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2011-01-31 13:21:03 +0000
committerPratik Naik <pratiknaik@gmail.com>2011-01-31 13:21:25 +0000
commit30176f28a41681c7607eed39d03501327869d40c (patch)
tree49bd72c3023c85d25d848095d9db7e5bcde9bbf8 /activerecord/test/cases/migration/command_recorder_test.rb
parent9db4c07e0bdf60982d08cb26035573995404eb98 (diff)
downloadrails-30176f28a41681c7607eed39d03501327869d40c.tar.gz
rails-30176f28a41681c7607eed39d03501327869d40c.tar.bz2
rails-30176f28a41681c7607eed39d03501327869d40c.zip
Add :bulk => true option to change_table
Diffstat (limited to 'activerecord/test/cases/migration/command_recorder_test.rb')
-rw-r--r--activerecord/test/cases/migration/command_recorder_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration/command_recorder_test.rb b/activerecord/test/cases/migration/command_recorder_test.rb
index ea2292dda5..ae531ebb4c 100644
--- a/activerecord/test/cases/migration/command_recorder_test.rb
+++ b/activerecord/test/cases/migration/command_recorder_test.rb
@@ -16,7 +16,7 @@ module ActiveRecord
def test_send_calls_super
assert_raises(NoMethodError) do
- @recorder.send(:create_table, :horses)
+ @recorder.send(:non_existing_method, :horses)
end
end