blob: 0b0d5cc7a95e5ea402b3c74b3267946dbd21bc70 (
plain)
1
2
3
4
5
6
7
|
require_relative '../../spec_helper'
describe "Integer#inspect" do
it "is an alias of Integer#to_s" do
Integer.instance_method(:inspect).should == Integer.instance_method(:to_s)
end
end
|