summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/to_a_spec.rb
blob: bb54cd7cdbed5244b47d8f5f84fdba29801c0f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../../spec_helper'

ruby_version_is ""..."3.0" do
  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
end