Sha256: b7fa649a3c60657e890318e02002e72dab43a57de0bf59a632b86714e5276ff8

Contents?: true

Size: 1.78 KB

Versions: 7

Compression:

Stored size: 1.78 KB

Contents

require "spec_helper"

describe 'FastGettext::TranslationRepository::Yaml' do
  before do
    FastGettext.pluralisation_rule = nil
    @rep = FastGettext::TranslationRepository.build('test', :path => File.join('spec', 'locale', 'yaml'), :type => :yaml)
    @rep.is_a?(FastGettext::TranslationRepository::Yaml).should be_true
    FastGettext.locale = 'de'
  end

  it "can be built" do
    @rep.available_locales.sort.should == ['de', 'en']
  end

  it "translates nothing when locale is unsupported" do
    FastGettext.locale = 'xx'
    @rep['simple'].should == nil
  end

  it "does not translated categories" do
    @rep['cars'].should == nil
  end

  it "can translate simple" do
    @rep['simple'].should == 'einfach'
  end

  it "can translate nested" do
    @rep['cars.car'].should == 'Auto'
  end

  it "can pluralize" do
    @rep.plural('cars.axis').should == ['Achse', 'Achsen', nil, nil]
  end

  it "handles unfound plurals with nil" do
    @rep.plural('cars.xxx').should == [nil, nil, nil, nil]
  end

  it "can be used to translate plural forms" do
    FastGettext.stub!(:current_repository).and_return @rep
    FastGettext.n_('cars.axis','cars.axis',2).should == 'Achsen'
    FastGettext.n_('cars.axis',2).should == 'Achsen'
    FastGettext.n_('cars.axis',1).should == 'Achse'
  end

  4.times do |i|
    it "can be used to do wanky pluralisation rules #{i}" do
      FastGettext.stub!(:current_repository).and_return @rep
      @rep.stub!(:pluralisation_rule).and_return lambda{|x| i}
      FastGettext.n_('cars.silly',1).should == i.to_s # cars.silly translations are 0,1,2,3
    end
  end

  it "can use custom pluraliztion rules" do
    FastGettext.locale = 'en'
    {0 => 0, 1 => 1, 2 => 2, 3 => 0}.each do |input, expected|
      @rep.pluralisation_rule.call(input).should == expected
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fast_gettext-0.7.0 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.12 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.11 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.10 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.9 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.8 spec/fast_gettext/translation_repository/yaml_spec.rb
fast_gettext-0.6.7 spec/fast_gettext/translation_repository/yaml_spec.rb