aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/hash/allocate_spec.rb
blob: d607f235bdc994e814e9ddc8c1f408b88d4fe267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../spec_helper', __FILE__)

describe "Hash.allocate" do
  it "returns an instance of Hash" do
    hsh = Hash.allocate
    hsh.should be_an_instance_of(Hash)
  end

  it "returns a fully-formed instance of Hash" do
    hsh = Hash.allocate
    hsh.size.should == 0
    hsh[:a] = 1
    hsh.should == { a: 1 }
  end
end