From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/psych/test_object.rb | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 jni/ruby/test/psych/test_object.rb (limited to 'jni/ruby/test/psych/test_object.rb') diff --git a/jni/ruby/test/psych/test_object.rb b/jni/ruby/test/psych/test_object.rb new file mode 100644 index 0000000..5e3ce82 --- /dev/null +++ b/jni/ruby/test/psych/test_object.rb @@ -0,0 +1,44 @@ +require_relative 'helper' + +module Psych + class Tagged + yaml_tag '!foo' + + attr_accessor :baz + + def initialize + @baz = 'bar' + end + end + + class Foo + attr_accessor :parent + + def initialize parent + @parent = parent + end + end + + class TestObject < TestCase + def test_dump_with_tag + tag = Tagged.new + assert_match('foo', Psych.dump(tag)) + end + + def test_tag_round_trip + tag = Tagged.new + tag2 = Psych.load(Psych.dump(tag)) + assert_equal tag.baz, tag2.baz + assert_instance_of(Tagged, tag2) + end + + def test_cyclic_references + foo = Foo.new(nil) + foo.parent = foo + loaded = Psych.load Psych.dump foo + + assert_instance_of(Foo, loaded) + assert_equal loaded, loaded.parent + end + end +end -- cgit v1.2.3