aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/nil/to_h_spec.rb
blob: 5300802d191b1bbe15d8259bb38e2cbe2841bd2c (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)

describe "NilClass#to_h" do
  it "returns an empty hash" do
    nil.to_h.should == {}
    nil.to_h.default.should == nil
  end
end