Sha256: 97e2ac8c56b3e4e692b7a7e97aaa97c0fe7bdc0c74509c1ef4f8d6d864cfe538

Contents?: true

Size: 310 Bytes

Versions: 29

Compression:

Stored size: 310 Bytes

Contents

describe "Hash#indices" do
  it "returns an array of values for the given keys" do
    h = {:a => 9, :b => 'a', :c => -10, :d => nil}
    h.indices.should be_kind_of(Array)
    h.indices.should == []
    h.indices(:a, :d, :b).should be_kind_of(Array)
    h.indices(:a, :d, :b).should == [9, nil, 'a']
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
opal-0.4.4 spec/rubyspec/core/hash/indices_spec.rb
opal-0.4.3 spec/rubyspec/core/hash/indices_spec.rb
opal-0.4.2 spec/rubyspec/core/hash/indices_spec.rb
opal-0.4.1 spec/rubyspec/core/hash/indices_spec.rb
opal-0.4.0 spec/rubyspec/core/hash/indices_spec.rb
opal-0.3.44 spec/rubyspec/core/hash/indices_spec.rb
opal-0.3.43 spec/rubyspec/core/hash/indices_spec.rb
opal-0.3.42 spec/core/hash/indices_spec.rb
opal-0.3.41 spec/core/hash/indices_spec.rb
opal-0.3.40 spec/core/hash/indices_spec.rb
opal-0.3.39 spec/core/hash/indices_spec.rb
opal-0.3.38 spec/core/hash/indices_spec.rb
opal-0.3.37 spec/core/hash/indices_spec.rb
opal-0.3.36 spec/core/hash/indices_spec.rb
opal-0.3.35 spec/core/hash/indices_spec.rb
opal-0.3.34 spec/core/hash/indices_spec.rb
opal-0.3.33 spec/core/hash/indices_spec.rb
opal-0.3.32 spec/core/hash/indices_spec.rb
opal-0.3.31 spec/core/hash/indices_spec.rb
opal-0.3.30 spec/core/hash/indices_spec.rb