Sha256: f42c8b6106850bf21e7d49c287a0f599f82971fd51ebb605715810dca212343a

Contents?: true

Size: 445 Bytes

Versions: 10

Compression:

Stored size: 445 Bytes

Contents

shared_examples_for :hash_length do |method|
  before { @method = method }

  it "returns the number of entries" do
    new_hash(:a => 1, :b => 'c').send(@method).should == 2
    new_hash(:a => 1, :b => 2, :a => 2).send(@method).should == 2
    new_hash(:a => 1, :b => 1, :c => 1).send(@method).should == 3
    new_hash().send(@method).should == 0
    new_hash(5).send(@method).should == 0
    new_hash { 5 }.send(@method).should == 0
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jactive_support-2.1.2 spec/java_ext/map/shared/length.rb
jactive_support-3.0.0 spec/java_ext/map/shared/length.rb
jactive_support-3.0.0.pre2 spec/java_ext/map/shared/length.rb
jactive_support-3.0.0.pre1 spec/java_ext/map/shared/length.rb
jactive_support-2.1.1 spec/java_ext/map/shared/length.rb
jactive_support-2.1.0 spec/java_ext/map/shared/length.rb
jactive_support-2.0.0 spec/java_ext/map/shared/length.rb
jactive_support-1.0.2 spec/java_ext/map/shared/length.rb
jactive_support-1.0.1-universal-java-1.6 spec/java_ext/map/shared/length.rb
jactive_support-1.0.0-universal-java-1.6 spec/java_ext/map/shared/length.rb