summaryrefslogtreecommitdiff
path: root/test/yaml/test_array.rb
blob: 23434e5f32137193480b889ccfe745c167fc7260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'helper'

module YAML
  class TestArray < MiniTest::Unit::TestCase
    def setup
      @list = [{ :a => 'b' }, 'foo']
    end

    def test_self_referential
      @list << @list
      assert_equal @list, YAML.load(@list.to_yaml)
    end

    def test_to_yaml
      assert_equal @list, YAML.load(@list.to_yaml)
    end

    def test_dump
      assert_equal @list, YAML.load(YAML.dump(@list))
    end
  end
end