Sha256: ad3c323de4f2ff32249dd38359465b92bab4157b41e0b55d22cf31a531a4932d
Contents?: true
Size: 623 Bytes
Versions: 1
Compression:
Stored size: 623 Bytes
Contents
current_folder = File.dirname(__FILE__) require File.join(current_folder,'..','..','spec_helper') describe 'FastGettext::TranslationRepository::Mo' do before do @rep = FastGettext::TranslationRepository.build('test',:path=>File.join(current_folder,'..','..','locale')) @rep.is_a? FastGettext::TranslationRepository::Mo end it "can be built" do @rep.available_locales.should == ['de','en'] end it "can translate" do FastGettext.locale = 'de' @rep['car'].should == 'Auto' end it "can pluralize" do FastGettext.locale = 'de' @rep.plural('Axis','Axis',2).should == 'Achsen' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grosser-fast_gettext-0.2.11 | spec/fast_gettext/translation_repository/mo_spec.rb |