aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract/translation_test.rb
blob: 09ebfab85e22bd691b8441fe51239ee9c0b3e37e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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_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