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