blob: 7e7318ee1be8a383587b460fb19a8d55aa836f46 (
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 < Test::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
|