Sha256: 73c75cf8955a1c1de89827959dbcbd06ea622e412572fa7020efe12ce513f5c3
Contents?: true
Size: 1.48 KB
Versions: 8
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 :rack_test 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
8 entries across 8 versions & 3 rubygems