summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/intersection_spec.rb
blob: 6ff9c80ce1c0d025d4fd8e32dd79f13c430fc390 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../../spec_helper'
require_relative 'shared/intersection'
require 'set'

describe "SortedSet#intersection" do
  it_behaves_like :sorted_set_intersection, :intersection
end

describe "SortedSet#&" do
  it_behaves_like :sorted_set_intersection, :&
end