summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/union_spec.rb
blob: 20fe0ddca39c3a6d8ecca83235ee12cde79ceb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require_relative 'shared/union'
require 'set'

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

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