mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0b396d5880
* Rely on encoding tags to determine if string should be dumped as binary.
8949a47b8c
* Specify "frozen_string_literal: true".
* Support to binary release for mingw32 platform.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
72 lines
1.6 KiB
Ruby
72 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
require_relative 'helper'
|
|
|
|
module Psych
|
|
class TestObjectReferences < TestCase
|
|
def test_range_has_references
|
|
assert_reference_trip 1..2
|
|
end
|
|
|
|
def test_module_has_references
|
|
assert_reference_trip Psych
|
|
end
|
|
|
|
def test_class_has_references
|
|
assert_reference_trip TestObjectReferences
|
|
end
|
|
|
|
def test_rational_has_references
|
|
assert_reference_trip Rational('1.2')
|
|
end
|
|
|
|
def test_complex_has_references
|
|
assert_reference_trip Complex(1, 2)
|
|
end
|
|
|
|
def test_datetime_has_references
|
|
assert_reference_trip DateTime.now
|
|
end
|
|
|
|
def test_struct_has_references
|
|
assert_reference_trip Struct.new(:foo).new(1)
|
|
end
|
|
|
|
def assert_reference_trip obj
|
|
yml = Psych.dump([obj, obj])
|
|
assert_match(/\*-?\d+/, yml)
|
|
data = Psych.load yml
|
|
assert_equal data.first.object_id, data.last.object_id
|
|
end
|
|
|
|
def test_float_references
|
|
data = Psych.load <<-eoyml
|
|
---\s
|
|
- &name 1.2
|
|
- *name
|
|
eoyml
|
|
assert_equal data.first, data.last
|
|
assert_equal data.first.object_id, data.last.object_id
|
|
end
|
|
|
|
def test_binary_references
|
|
data = Psych.load <<-eoyml
|
|
---
|
|
- &name !binary |-
|
|
aGVsbG8gd29ybGQh
|
|
- *name
|
|
eoyml
|
|
assert_equal data.first, data.last
|
|
assert_equal data.first.object_id, data.last.object_id
|
|
end
|
|
|
|
def test_regexp_references
|
|
data = Psych.load <<-eoyml
|
|
---\s
|
|
- &name !ruby/regexp /pattern/i
|
|
- *name
|
|
eoyml
|
|
assert_equal data.first, data.last
|
|
assert_equal data.first.object_id, data.last.object_id
|
|
end
|
|
end
|
|
end
|