aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/set/sortedset/to_a_spec.rb
blob: ba37d18cdba773d29202778118a01fb0dc56d0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative '../../../spec_helper'
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