aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/nil/to_s_spec.rb
blob: 935bb63a9bb81eb2e987eafe3c7519867141b7fb (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)

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