summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/set/union_spec.rb
blob: c705497928e03690430bbdd55796722d605a5e09 (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 "Set#union" do
  it_behaves_like :set_union, :union
end

describe "Set#|" do
  it_behaves_like :set_union, :|
end