summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/to_a_spec.rb
blob: daee014e90a7fefa4ba23f2047306aac91fb7573 (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
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