summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/allocate_spec.rb
blob: 93420de86689135d9477c4df0563a3536ee2233e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'

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