133c21b801
Update to Rails 2.3.1. (Actually, not quite. Doesn't look like 2.3.1 will be released today, but I REALLY want to push these bugfixes out.) Removed bundled Rack (Rails 2.3.1 comes bundled with Rack 1.0). Add config.action_view.cache_template_loading = true to production environment. Fix FastCGI bug (http://rubyforge.org/tracker/index.php?func=detail&aid=24191&group_id=186&atid=783). Fix WikiWords bug (http://rubyforge.org/pipermail/instiki-users/2009-February/001181.html).
33 lines
973 B
Ruby
33 lines
973 B
Ruby
require 'abstract_unit'
|
|
|
|
class TranslationHelperTest < Test::Unit::TestCase
|
|
include ActionView::Helpers::TagHelper
|
|
include ActionView::Helpers::TranslationHelper
|
|
|
|
attr_reader :request
|
|
def setup
|
|
end
|
|
|
|
def test_delegates_to_i18n_setting_the_raise_option
|
|
I18n.expects(:translate).with(:foo, :locale => 'en', :raise => true)
|
|
translate :foo, :locale => 'en'
|
|
end
|
|
|
|
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
|
|
end
|
|
|
|
def test_scoping_by_partial
|
|
expects(:template).returns(stub(:path_without_format_and_extension => "people/index"))
|
|
I18n.expects(:translate).with("people.index.foo", :locale => 'en', :raise => true)
|
|
translate ".foo", :locale => 'en'
|
|
end
|
|
end
|