Sha256: cd86a58c3a5059ef8e69f3ddc3ec07063508e9cd263b451ce645d19927e22d51
Contents?: true
Size: 317 Bytes
Versions: 29
Compression:
Stored size: 317 Bytes
Contents
describe "Hash#value?" do it "returns true if the value exists in the hash" do {:a => :b}.value?(:a).should == false {1 => 2}.value?(2).should == true h = Hash.new 5 h.value?(5).should == false end it "uses == semantics for comparing values" do {5 => 2.0}.value?(2).should == true end end
Version data entries
29 entries across 29 versions & 1 rubygems