diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-12-16 17:49:07 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-12-16 17:49:07 -0800 |
commit | 9843d25b096edfbf9fe5ab29a15c2447158c925d (patch) | |
tree | c198f30e692da5c076473098318f084e3da1adaa /test/yaml/test_set.rb | |
parent | 8eb94e153ce730c88aebb95595a7f9f7b7f5e0f8 (diff) | |
download | psych-9843d25b096edfbf9fe5ab29a15c2447158c925d.zip |
adding the set implementation
Diffstat (limited to 'test/yaml/test_set.rb')
-rw-r--r-- | test/yaml/test_set.rb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/yaml/test_set.rb b/test/yaml/test_set.rb new file mode 100644 index 0000000..41145ba --- /dev/null +++ b/test/yaml/test_set.rb @@ -0,0 +1,43 @@ +require 'helper' + +module YAML + class TestSet < Test::Unit::TestCase + def setup + @set = YAML::Set.new + @set['foo'] = 'bar' + @set['bar'] = 'baz' + end + + def test_to_yaml + assert_match(/!set/, @set.to_yaml) + end + + def test_roundtrip + assert_equal(@set, YAML.load(YAML.dump(@set))) + end + + ### + # FIXME: Syck should also support !!set as shorthand + def test_load_from_yaml + loaded = YAML.load(<<-eoyml) +--- !set +foo: bar +bar: baz + eoyml + assert_equal(@set, loaded) + end + + def test_loaded_class + assert_instance_of(YAML::Set, YAML.load(YAML.dump(@set))) + end + + def test_set_shorthand + loaded = YAML.load(<<-eoyml) +--- !!set +foo: bar +bar: baz + eoyml + assert_instance_of(YAML::Set, loaded) + end + end +end |