instiki/vendor/rails/actionpack/test/controller/translation_test.rb
Jacques Distler 7600aef48b Upgrade to Rails 2.2.0
As a side benefit, fix an (non-user-visible) bug in display_s5().
Also fixed a bug where removing orphaned pages did not expire cached summary pages.
2008-10-27 01:47:01 -05:00

26 lines
622 B
Ruby

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