summaryrefslogtreecommitdiff
path: root/test/psych/test_exception.rb
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2017-03-10 11:36:48 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2017-03-27 10:10:44 +0900
commit4f76651749d338ead0d1d28ec55645b2a311082c (patch)
treef4e664b0575ea455630af9eae092178cab4dce91 /test/psych/test_exception.rb
parente2e867de11cec54ed508de2d6659be26b73cdb31 (diff)
downloadpsych-4f76651749d338ead0d1d28ec55645b2a311082c.zip
Remove to_yaml_propaties
Diffstat (limited to 'test/psych/test_exception.rb')
-rw-r--r--test/psych/test_exception.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/psych/test_exception.rb b/test/psych/test_exception.rb
index 85fa78f..fa80fdb 100644
--- a/test/psych/test_exception.rb
+++ b/test/psych/test_exception.rb
@@ -121,19 +121,6 @@ module Psych
assert_equal 2, w.bar
end
- def test_to_yaml_properties
- class << @wups
- def to_yaml_properties
- [:@foo]
- end
- end
-
- w = Psych.load(Psych.dump(@wups))
- assert_equal @wups, w
- assert_equal 1, w.foo
- assert_nil w.bar
- end
-
def test_psych_syntax_error
Tempfile.create(['parsefile', 'yml']) do |t|
t.binmode