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

ruby_version_is "2.5" do
  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
end