Sha256: a78c58aca5f6df153cfd2387687035f82afc636d2249abea02316d65af96e755
Contents?: true
Size: 356 Bytes
Versions: 52
Compression:
Stored size: 356 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Hash.allocate" do it "returns an instance of Hash" do hsh = hash_class.allocate hsh.should be_kind_of(Hash) end it "returns a fully-formed instance of Hash" do hsh = hash_class.allocate hsh.size.should == 0 hsh[:a] = 1 hsh.should == { :a => 1 } end end
Version data entries
52 entries across 52 versions & 2 rubygems