aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/array/to_ary_spec.rb
blob: ab4dfdb5ed30608f53de07a65ef09d93e19355d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

describe "Array#to_ary" do
  it "returns self" do
    a = [1, 2, 3]
    a.should equal(a.to_ary)
    a = ArraySpecs::MyArray[1, 2, 3]
    a.should equal(a.to_ary)
  end

  it "properly handles recursive arrays" do
    empty = ArraySpecs.empty_recursive_array
    empty.to_ary.should == empty

    array = ArraySpecs.recursive_array
    array.to_ary.should == array
  end

end