summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/to_s_spec.rb
blob: 3c26ae9346a7b5a21424fb705ba70b31786952f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative "../../spec_helper"
require_relative 'shared/inspect'
require 'set'

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