Sha256: 9a3c2d149847261d9d505a328ec97bf946e98fb0b5125c372fa6a420f585a443
Contents?: true
Size: 447 Bytes
Versions: 7
Compression:
Stored size: 447 Bytes
Contents
require File.expand_path('spec/spec_helper') require 'fast_gettext/translation_repository/base' describe 'FastGettext::TranslationRepository::Base' do before do @rep = FastGettext::TranslationRepository::Base.new('x') end it "can be built" do @rep.available_locales.should == [] end it "cannot translate" do @rep['car'].should == nil end it "cannot pluralize" do @rep.plural('Axis','Axis').should == [] end end
Version data entries
7 entries across 7 versions & 1 rubygems