summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/to_ary_spec.rb
blob: 314699b709a7addc84e3487c9f62b19896b210d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

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