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

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