aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/callbacks_test.rb
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-01-31 16:27:24 +1100
committerJeremy Kemper <jeremy@bitsweat.net>2010-01-31 09:46:30 -0800
commit2ebea1c02d10e0fea26bd98d297a8f4d41dc1aff (patch)
treec85ae3de692c1ac783e67f11e71b8336902d8341 /activesupport/test/callbacks_test.rb
parentb3a028259f373fd58fea2171a1e9e8b2fe3e253a (diff)
downloadrails-2ebea1c02d10e0fea26bd98d297a8f4d41dc1aff.tar.gz
rails-2ebea1c02d10e0fea26bd98d297a8f4d41dc1aff.tar.bz2
rails-2ebea1c02d10e0fea26bd98d297a8f4d41dc1aff.zip
deOMGifying Railties, Active Support, and Action Pack
Diffstat (limited to 'activesupport/test/callbacks_test.rb')
-rw-r--r--activesupport/test/callbacks_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/callbacks_test.rb b/activesupport/test/callbacks_test.rb
index df98644436..11494e951e 100644
--- a/activesupport/test/callbacks_test.rb
+++ b/activesupport/test/callbacks_test.rb
@@ -264,12 +264,12 @@ module CallbacksTest
define_callbacks :save
attr_reader :stuff
- set_callback :save, :before, :omg, :per_key => {:if => :yes}
+ set_callback :save, :before, :action, :per_key => {:if => :yes}
def yes() true end
- def omg
- @stuff = "OMG"
+ def action
+ @stuff = "ACTION"
end
def save
@@ -522,7 +522,7 @@ module CallbacksTest
def test_save
obj = HyphenatedCallbacks.new
obj.save
- assert_equal obj.stuff, "OMG"
+ assert_equal obj.stuff, "ACTION"
end
end
end