Sha256: 500617336cb6b8d946a8a81ed8f5c03e7c4dd36fee58e91da8c4b9aaee2e88db
Contents?: true
Size: 178 Bytes
Versions: 29
Compression:
Stored size: 178 Bytes
Contents
describe "Hash#[]=" do it "associates the key with the value and return the value" do h = {:a => 1} (h[:b] = 2).should == 2 h.should == {:b => 2, :a => 1} end end
Version data entries
29 entries across 29 versions & 1 rubygems