blob: 55b8bfd9b20c6e924984f05d1d17834b7c377a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require_relative "../../spec_helper"
require_relative 'shared/inspect'
describe "Set#to_s" do
it_behaves_like :set_inspect, :to_s
it "is an alias of inspect" do
set = Set.new
set.method(:to_s).should == set.method(:inspect)
end
end
|