diff options
author | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-09-09 23:19:07 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2008-09-10 00:39:54 -0500 |
commit | a18ed6d5635f2d2a5d60e073757839895b1ade70 (patch) | |
tree | 57479d6e37ae69adb6ddfb24a8fd7b257d0ecf1c /actionpack/test | |
parent | c55565b032b4f383dcd43461d0bb7651f4d7e000 (diff) | |
download | rails-a18ed6d5635f2d2a5d60e073757839895b1ade70.tar.gz rails-a18ed6d5635f2d2a5d60e073757839895b1ade70.tar.bz2 rails-a18ed6d5635f2d2a5d60e073757839895b1ade70.zip |
Added ActionController::Translation module delegating to I18n #translate/#t and #localize/#l [status:committed #1008]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/translation_test.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/actionpack/test/controller/translation_test.rb b/actionpack/test/controller/translation_test.rb new file mode 100644 index 0000000000..0bf61a6556 --- /dev/null +++ b/actionpack/test/controller/translation_test.rb @@ -0,0 +1,26 @@ +require 'abstract_unit' + +# class TranslatingController < ActionController::Base +# end + +class TranslationControllerTest < Test::Unit::TestCase + def setup + @controller = ActionController::Base.new + end + + def test_action_controller_base_responds_to_translate + assert @controller.respond_to?(:translate) + end + + def test_action_controller_base_responds_to_t + assert @controller.respond_to?(:t) + end + + def test_action_controller_base_responds_to_localize + assert @controller.respond_to?(:localize) + end + + def test_action_controller_base_responds_to_l + assert @controller.respond_to?(:l) + end +end
\ No newline at end of file |