Sha256: 7d538482067fd237db864a6f59579563f9a568ed5fbeb32559066c5dc22aab20
Contents?: true
Size: 386 Bytes
Versions: 83
Compression:
Stored size: 386 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' 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
83 entries across 83 versions & 1 rubygems