aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/notifications_test.rb
diff options
context:
space:
mode:
authorstopdropandrew <andrew@kongregate.com>2013-03-02 15:50:41 -0800
committerstopdropandrew <andrew@kongregate.com>2013-03-02 16:05:05 -0800
commita007800a552a9ab31c21134c2e716222268a1276 (patch)
tree46c6435e1a096c610d06d42c7584b72cdf9c23f9 /activesupport/test/notifications_test.rb
parent8fe904b5caf960bbc2bc04a11bb8d8fe53949587 (diff)
downloadrails-a007800a552a9ab31c21134c2e716222268a1276.tar.gz
rails-a007800a552a9ab31c21134c2e716222268a1276.tar.bz2
rails-a007800a552a9ab31c21134c2e716222268a1276.zip
ActiveSupport::Notifications::Instrumenter#instrument should yield
its payload the same way that ActiveSupport::Notifications does. Fix spelling in test name.
Diffstat (limited to 'activesupport/test/notifications_test.rb')
-rw-r--r--activesupport/test/notifications_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/notifications_test.rb b/activesupport/test/notifications_test.rb
index bcb393c7bc..d63c59883a 100644
--- a/activesupport/test/notifications_test.rb
+++ b/activesupport/test/notifications_test.rb
@@ -157,7 +157,7 @@ module Notifications
assert_equal 2, instrument(:awesome) { 1 + 1 }
end
- def test_instrument_yields_the_paylod_for_further_modification
+ def test_instrument_yields_the_payload_for_further_modification
assert_equal 2, instrument(:awesome) { |p| p[:result] = 1 + 1 }
assert_equal 1, @events.size
assert_equal :awesome, @events.first.name