summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/union_spec.rb
blob: eb77600feee12a08dda19b141efb05d51a3ea486 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../../spec_helper'
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