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

describe "FalseClass#to_s" do
  it "returns the string 'false'" do
    false.to_s.should == "false"
  end
end