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 40 41 42 43 44 45 46 47 48 49 50 51 52
|
require "spec_helper"
describe 'FastGettext::TranslationRepository::Mo' do
before do
@rep = FastGettext::TranslationRepository.build('test',:path=>File.join('spec', 'locale'))
@rep.is_a?(FastGettext::TranslationRepository::Mo).should == true
end
it "can be built" do
@rep.available_locales.sort.should == ['de','en','gsw_CH']
end
it "can translate" do
FastGettext.locale = 'de'
@rep['car'].should == 'Auto'
end
it "can pluralize" do
FastGettext.locale = 'de'
@rep.plural('Axis','Axis').should == ['Achse','Achsen']
end
describe :reload do
before do
mo_file = FastGettext::MoFile.new('spec/locale/de/LC_MESSAGES/test2.mo')
FastGettext::MoFile.stub(:new).and_return(FastGettext::MoFile.empty)
FastGettext::MoFile.stub(:new).with('spec/locale/de/LC_MESSAGES/test.mo').and_return(mo_file)
end
it "can reload" do
FastGettext.locale = 'de'
@rep['Untranslated and translated in test2'].should be_nil
@rep.reload
@rep['Untranslated and translated in test2'].should == 'Translated'
end
it "returns true" do
@rep.reload.should == true
end
end
it "has access to the mo repositories pluralisation rule" do
FastGettext.locale = 'en'
rep = FastGettext::TranslationRepository.build('plural_test',:path=>File.join('spec','locale'))
rep['car'].should == 'Test'#just check it is loaded correctly
rep.pluralisation_rule.call(2).should == 3
end
end
|