summaryrefslogtreecommitdiff
path: root/spec/ruby/core/nil/to_h_spec.rb
blob: 5c8d5dc25ae92effbd9210aaa2b28f559e1a4ea5 (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'

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