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

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