blob: 208c996f17e74dd135b4ef31610aaafdc4c49253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'helper'
module YAML
class TestArray < Test::Unit::TestCase
def setup
@list = [{ :a => 'b' }, 'foo']
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
|