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

describe "TrueClass#to_s" do
  it "returns the string 'true'" do
    true.to_s.should == "true"
  end
end