aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/translation_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-20 14:41:23 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-20 15:02:13 +0100
commit6e26be69606c52dbccfad366661b455157c35be4 (patch)
treea93b713b2d89cbab601fabfe1c2f54e21415e673 /actionpack/test/controller/translation_test.rb
parent8e2fd54b19656a6edbd94f8707927d09e167e7fc (diff)
downloadrails-6e26be69606c52dbccfad366661b455157c35be4.tar.gz
rails-6e26be69606c52dbccfad366661b455157c35be4.tar.bz2
rails-6e26be69606c52dbccfad366661b455157c35be4.zip
Move ActionController::Translation to AbstractController::Translation.
Diffstat (limited to 'actionpack/test/controller/translation_test.rb')
-rw-r--r--actionpack/test/controller/translation_test.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/actionpack/test/controller/translation_test.rb b/actionpack/test/controller/translation_test.rb
deleted file mode 100644
index 0bf61a6556..0000000000
--- a/actionpack/test/controller/translation_test.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-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