blob: 99064a8b8771bb2e60824a99d3de3de59c098478 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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
def test_lazy_lookup
expected = 'bar'
@controller.stubs(:action_name => :index)
I18n.stubs(:translate).with('action_controller.base.index.foo').returns(expected)
assert_equal expected, @controller.t('.foo')
end
def test_default_translation
key, expected = 'one.two' 'bar'
I18n.stubs(:translate).with(key).returns(expected)
assert_equal expected, @controller.t(key)
end
end
|