summaryrefslogtreecommitdiff
path: root/spec/ruby/core/true/to_s_spec.rb
blob: f26cd138e2e521f677e39667fdbbd6e7c95c64b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative '../../spec_helper'

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

  ruby_version_is "2.7" do
    it "returns a frozen string" do
      true.to_s.should.frozen?
    end

    it "always returns the same string" do
      true.to_s.should equal(true.to_s)
    end
  end
end