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

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