make sure that Psych can roundtrip an AR object

This commit is contained in:
Aaron Patterson
2011-01-05 14:01:47 -08:00
parent 9731c862ec
commit 6d74710828

View File

@@ -17,4 +17,17 @@ class YamlSerializationTest < ActiveRecord::TestCase
t = YAML.load YAML.dump topic
assert_equal topic, t
end
begin
require 'psych'
def test_psych_roundtrip
topic = Topic.first
assert topic
t = Psych.load Psych.dump topic
assert_equal topic, t
end
rescue LoadError
end
end