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

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