translation_helper_test.rb 997 字节
Newer Older
S
Sven Fuchs 已提交
1 2 3 4 5 6 7
require 'abstract_unit'

class TranslationHelperTest < Test::Unit::TestCase
  include ActionView::Helpers::TagHelper
  include ActionView::Helpers::TranslationHelper
  
  attr_reader :request
8 9 10 11
  def setup
  end
  
  def test_delegates_to_i18n_setting_the_raise_option
D
David Heinemeier Hansson 已提交
12
    I18n.expects(:translate).with(:foo, :locale => 'en', :raise => true).returns("")
13 14
    translate :foo, :locale => 'en'
  end
L
Luca Guidi 已提交
15
  
16 17 18 19 20 21 22 23 24
  def test_returns_missing_translation_message_wrapped_into_span
    expected = '<span class="translation_missing">en, foo</span>'
    assert_equal expected, translate(:foo)
  end

  def test_delegates_localize_to_i18n
    @time = Time.utc(2008, 7, 8, 12, 18, 38)
    I18n.expects(:localize).with(@time)
    localize @time
L
Luca Guidi 已提交
25
  end
26 27 28
  
  def test_scoping_by_partial
    expects(:template).returns(stub(:path_without_format_and_extension => "people/index"))
D
David Heinemeier Hansson 已提交
29
    I18n.expects(:translate).with("people.index.foo", :locale => 'en', :raise => true).returns("")
30 31
    translate ".foo", :locale => 'en'
  end
32
end