Sha256: bcc69911ad056f79b20edf6b7510c32fccbdb7c464d14ccad28d67d54269b253

Contents?: true

Size: 1010 Bytes

Versions: 34

Compression:

Stored size: 1010 Bytes

Contents

require File.join(File.dirname(File.expand_path(__FILE__)), 'spec_helper')

describe Sequel::Inflections do
  before do
    @plurals, @singulars, @uncountables = Sequel.inflections.plurals.dup, Sequel.inflections.singulars.dup, Sequel.inflections.uncountables.dup
  end
  after do
    Sequel.inflections.plurals.replace(@plurals)
    Sequel.inflections.singulars.replace(@singulars)
    Sequel.inflections.uncountables.replace(@uncountables)
  end

  it "should be possible to clear the list of singulars, plurals, and uncountables" do
    Sequel.inflections.clear(:plurals)
    Sequel.inflections.plurals.must_equal []
    Sequel.inflections.plural('blah', 'blahs')
    Sequel.inflections.clear
    Sequel.inflections.plurals.must_equal []
    Sequel.inflections.singulars.must_equal []
    Sequel.inflections.uncountables.must_equal []
  end

  it "should be yielded and returned by Sequel.inflections" do
    Sequel.inflections{|i| i.must_equal Sequel::Inflections}.must_equal Sequel::Inflections
  end
end

Version data entries

34 entries across 32 versions & 2 rubygems

Version Path
tdiary-5.0.1 vendor/bundle/gems/sequel-4.35.0/spec/model/inflector_spec.rb
sequel-4.35.0 spec/model/inflector_spec.rb
sequel-4.34.0 spec/model/inflector_spec.rb
sequel-4.33.0 spec/model/inflector_spec.rb
sequel-4.32.0 spec/model/inflector_spec.rb
sequel-4.31.0 spec/model/inflector_spec.rb
sequel-4.30.0 spec/model/inflector_spec.rb
sequel-4.29.0 spec/model/inflector_spec.rb
sequel-4.28.0 spec/model/inflector_spec.rb
sequel-4.27.0 spec/model/inflector_spec.rb
sequel-4.26.0 spec/model/inflector_spec.rb
sequel-4.25.0 spec/model/inflector_spec.rb
sequel-4.24.0 spec/model/inflector_spec.rb
sequel-4.23.0 spec/model/inflector_spec.rb