2010-01-09 17:11:35 -05:00
|
|
|
require 'test/unit'
|
|
|
|
require 'yaml'
|
|
|
|
|
|
|
|
class StructWithIvar < Struct.new(:foo)
|
|
|
|
attr_reader :bar
|
|
|
|
def initialize *args
|
|
|
|
super
|
|
|
|
@bar = 'hello'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-10 20:37:42 -04:00
|
|
|
module Syck
|
2010-01-09 17:11:35 -05:00
|
|
|
class TestStruct < MiniTest::Unit::TestCase
|
2010-04-10 21:45:15 -04:00
|
|
|
def setup
|
|
|
|
@current_engine = YAML::ENGINE.yamler
|
|
|
|
YAML::ENGINE.yamler = 'syck'
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
YAML::ENGINE.yamler = @current_engine
|
|
|
|
end
|
|
|
|
|
2010-01-09 17:11:35 -05:00
|
|
|
def test_roundtrip
|
|
|
|
thing = StructWithIvar.new('bar')
|
|
|
|
struct = YAML.load(YAML.dump(thing))
|
|
|
|
|
|
|
|
assert_equal 'hello', struct.bar
|
|
|
|
assert_equal 'bar', struct.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load
|
|
|
|
obj = YAML.load(<<-eoyml)
|
|
|
|
--- !ruby/struct:StructWithIvar
|
2010-02-04 12:11:00 -05:00
|
|
|
foo: bar
|
|
|
|
@bar: hello
|
2010-04-10 21:45:15 -04:00
|
|
|
eoyml
|
2010-01-09 17:11:35 -05:00
|
|
|
|
|
|
|
assert_equal 'hello', obj.bar
|
|
|
|
assert_equal 'bar', obj.foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|