summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/union_spec.rb
blob: c942f20d3e233eec9f62d79b2d5891a3d2122a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../../../spec_helper'

ruby_version_is ""..."3.0" do
  require_relative 'shared/union'
  require 'set'

  describe "SortedSet#union" do
    it_behaves_like :sorted_set_union, :union
  end

  describe "SortedSet#|" do
    it_behaves_like :sorted_set_union, :|
  end
end