summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-06-08 17:06:46 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-06-08 18:58:57 -0700
commite28d3dbca422250d291e98d39d9c4ef2317e3b8c (patch)
treeb6d40bf3220201dff4d935027b51a2243f2179f6 /test
parent2040a6df75d7c598572c823d002774dc08e189db (diff)
downloadpsych-e28d3dbca422250d291e98d39d9c4ef2317e3b8c.zip
ruby classes can round trip
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_class.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/psych/test_class.rb b/test/psych/test_class.rb
index cba88ba..8fd4ad0 100644
--- a/test/psych/test_class.rb
+++ b/test/psych/test_class.rb
@@ -2,16 +2,18 @@ require 'psych/helper'
module Psych
class TestClass < TestCase
- def test_cycle
+ def test_cycle_anonymous_class
assert_raises(::TypeError) do
- assert_cycle(TestClass)
+ assert_cycle(Class.new)
end
end
+ def test_cycle
+ assert_cycle(TestClass)
+ end
+
def test_dump
- assert_raises(::TypeError) do
- Psych.dump TestClass
- end
+ Psych.dump TestClass
end
end
end