summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/union_spec.rb
blob: c7255c3d2fb0ca791ed92fbdbaa926896ce9cb43 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../shared/union', __FILE__)
require 'set'

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

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