aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/callbacks_test.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/activerecord/test/cases/callbacks_test.rb b/activerecord/test/cases/callbacks_test.rb
index e10a7b34c8..253c3099d6 100644
--- a/activerecord/test/cases/callbacks_test.rb
+++ b/activerecord/test/cases/callbacks_test.rb
@@ -477,21 +477,25 @@ class CallbacksTest < ActiveRecord::TestCase
assert child.after_save_called
end
- def test_on_isnt_allowed
+ def test_before_save_doesnt_allow_on_option
exception = assert_raises ArgumentError do
Class.new(ActiveRecord::Base) do
before_save(on: :create) {}
end
end
assert_equal "Unknown key: :on. Valid keys are: :if, :unless, :prepend", exception.message
+ end
+ def test_around_save_doesnt_allow_on_option
exception = assert_raises ArgumentError do
Class.new(ActiveRecord::Base) do
around_save(on: :create) {}
end
end
assert_equal "Unknown key: :on. Valid keys are: :if, :unless, :prepend", exception.message
+ end
+ def test_after_save_doesnt_allow_on_option
exception = assert_raises ArgumentError do
Class.new(ActiveRecord::Base) do
after_save(on: :create) {}