Sha256: 36b5090811e5a2ab812a979af392f167463bccbe79b354ff0d4c1829619ec8f8
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
# * Encoding: UTF-8 $KCODE = 'u' if /regexp/.respond_to?(:kcode) require 'spec/helper' spec_requires 'locale/tag', 'locale' class SpecHelperLocalize < Ramaze::Controller map '/' helper :localize def index locale.language end def translate(string) l(string) end private def localize_dictionary DICTIONARY end end DICTIONARY = Ramaze::Helper::Localize::Dictionary.new DICTIONARY.load(:en, :hash => {'one' => 'one', 'two' => 'two'}) DICTIONARY.load(:de, :hash => {'one' => 'eins', 'two' => 'zwei'}) DICTIONARY.load(:ja, :hash => {'one' => '一', 'three' => '三'}) describe Ramaze::Helper::Localize do behaves_like :mock should 'default to a language' do get('/').body.should == 'en' end should 'override language by ?lang' do get('/?lang=de').body.should == 'de' end should 'override language by cookie' do set_cookie('lang=ja') get('/').body.should == 'ja' clear_cookies end should 'not fail if language is invalid' do get('/?lang=foobar').body.should == 'foobar' end should 'use dictionary to translate' do get('/translate/one').body.should == 'one' get('/translate/one?lang=en').body.should == 'one' get('/translate/one?lang=ja').body.should == '一' get('/translate/one?lang=de').body.should == 'eins' end it "falls back to default language if string wasn't found in dictionary" do get('/translate/two?lang=ja').body.should == 'two' get('/translate/three?lang=ja').body.should == '三' end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
manveru-ramaze-2009.05.08 | spec/ramaze/helper/localize.rb |
manveru-ramaze-2009.05 | spec/ramaze/helper/localize.rb |
ramaze-2009.05 | spec/ramaze/helper/localize.rb |