summaryrefslogtreecommitdiff
path: root/spec/ruby/core/set/to_a_spec.rb
blob: 1e9800167ad38421105b2fb869eb514f07fb7f8a (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

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