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

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