Sha256: a36e68f98663dc01dbc1ff432507555e7f1d0c52b868fd613cd7b18bccb36263

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

require "spec_helper"

default_setup
class IncludeTest
  include FastGettext::Translation
  @@xx = _('car')
  def self.ext
    _('car')
  end
  def inc
    _('car')
  end
  def self.xx
    @@xx
  end
end

describe FastGettext do
  include FastGettext
  before :all do
    default_setup
  end

  it "provides access to FastGettext::Translations methods" do
    FastGettext._('car').should == 'Auto'
    _('car').should == 'Auto'
    s_("XXX|not found").should == "not found"
    n_('Axis','Axis',1).should == 'Achse'
    N_('XXXXX').should == 'XXXXX'
    Nn_('X','Y').should == ['X','Y']
  end
  
  it "is extended to a class and included into a class" do
    IncludeTest.ext.should == 'Auto'
    IncludeTest.ext.should == 'Auto'
    IncludeTest.new.inc.should == 'Auto'
    IncludeTest.xx.should == 'Auto'
  end

  it "loads 3-letter locales as well" do
    FastGettext.locale = 'gsw_CH'
    FastGettext._('Car was successfully created.').should == "Z auto isch erfolgriich gspeicharat worda."
  end

  it "has a VERSION" do
    FastGettext::VERSION.should =~ /^\d+\.\d+\.\d+$/
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

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