summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/to_a_spec.rb
blob: 689e44f38a3efc65aa60d9581bd11801af7e4dce (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require 'set'

describe "Set#to_a" do
  it "returns an array containing elements of self" do
    Set[1, 2, 3].to_a.sort.should == [1, 2, 3]
  end
end