summaryrefslogtreecommitdiff
path: root/spec/ruby/core/set/intersection_spec.rb
blob: 136b886775864b0813f1ba7803858ed67f66d68e (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative 'shared/intersection'

describe "Set#intersection" do
  it_behaves_like :set_intersection, :intersection
end

describe "Set#&" do
  it_behaves_like :set_intersection, :&
end