aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract/translation_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/abstract/translation_test.rb')
-rw-r--r--actionpack/test/abstract/translation_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/test/abstract/translation_test.rb b/actionpack/test/abstract/translation_test.rb
index 0bf61a6556..09ebfab85e 100644
--- a/actionpack/test/abstract/translation_test.rb
+++ b/actionpack/test/abstract/translation_test.rb
@@ -9,18 +9,18 @@ class TranslationControllerTest < Test::Unit::TestCase
end
def test_action_controller_base_responds_to_translate
- assert @controller.respond_to?(:translate)
+ assert_respond_to @controller, :translate
end
def test_action_controller_base_responds_to_t
- assert @controller.respond_to?(:t)
+ assert_respond_to @controller, :t
end
def test_action_controller_base_responds_to_localize
- assert @controller.respond_to?(:localize)
+ assert_respond_to @controller, :localize
end
def test_action_controller_base_responds_to_l
- assert @controller.respond_to?(:l)
+ assert_respond_to @controller, :l
end
end \ No newline at end of file