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

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