aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/set/sortedset/intersection_spec.rb
blob: d3f5b49cebdffd57fcd0b60ef20a9126aab8fee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../shared/intersection', __FILE__)
require 'set'

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

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