summaryrefslogtreecommitdiff
path: root/spec/ruby/core/nil/inspect_spec.rb
blob: f7a5e7d1af6d591a2b66c26642d10f69e58bdd74 (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)

describe "NilClass#inspect" do
  it "returns the string 'nil'" do
    nil.inspect.should == "nil"
  end
end