summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/to_a_spec.rb
blob: 77deb17731c05e1168c345251a76be1a97734d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require File.expand_path('../../../../spec_helper', __FILE__)
require 'set'

describe "SortedSet#to_a" do
  it "returns an array containing elements" do
    set = SortedSet.new [1, 2, 3]
    set.to_a.should == [1, 2, 3]
  end

  it "returns a sorted array containing elements" do
    set = SortedSet[2, 3, 1]
    set.to_a.should == [1, 2, 3]

    set = SortedSet.new [5, 6, 4, 4]
    set.to_a.should == [4, 5, 6]
  end
end