blob: e73a57ba61a65308dcfd86e3fe9cda4e1045a522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
require 'minitest/autorun'
require 'psych'
module Psych
module Visitors
class TestYASTBuilder < MiniTest::Unit::TestCase
def setup
@v = Visitors::YASTBuilder.new
end
def test_scalar
@v.accept 'foo'
assert_equal 'foo', Psych.load(@v.tree.to_yaml)
assert_equal 'foo', Psych.load('foo'.to_yaml)
end
def test_binary
string = [0, 123,22, 44, 9, 32, 34, 39].pack('C*')
assert_equal string, Psych.load(string.to_yaml)
end
def test_anon_class
assert_raises(TypeError) do
@v.accept Class.new
end
assert_raises(TypeError) do
Class.new.to_yaml
end
end
end
end
end
|