Sha256: 1b356c9bc4f2b06860d83ba751aec17dc8c20420cf3a8b92793d92477c986733
Contents?: true
Size: 622 Bytes
Versions: 82
Compression:
Stored size: 622 Bytes
Contents
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
Version data entries
82 entries across 79 versions & 18 rubygems