aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/abstract/translation_test.rb
blob: 0194ee943fe57826e84802cb297b4cc070e928d0 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                      
                                                         


                                            
 
                                                       
                                             
     
 
                                               
                                     
     
 
                                                      
                                            
     
 
                                               
                                     
     
   
require 'abstract_unit'

# class TranslatingController < ActionController::Base
# end

class TranslationControllerTest < ActiveSupport::TestCase
  def setup
    @controller = ActionController::Base.new
  end

  def test_action_controller_base_responds_to_translate
    assert_respond_to @controller, :translate
  end

  def test_action_controller_base_responds_to_t
    assert_respond_to @controller, :t
  end

  def test_action_controller_base_responds_to_localize
    assert_respond_to @controller, :localize
  end

  def test_action_controller_base_responds_to_l
    assert_respond_to @controller, :l
  end
end