blob: 3e77022d4b79cf7402a7b9f46bda1076ce55fed2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require_relative '../../spec_helper'
require_relative 'shared/union'
describe "Set#union" do
it_behaves_like :set_union, :union
end
describe "Set#|" do
it_behaves_like :set_union, :|
end
|