diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-28 11:54:39 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-28 11:54:39 -0700 |
commit | f4e5e8205ee3b63403a6b6695746046cd663d6d8 (patch) | |
tree | 6fc5088df62f3a900e231778bee7d0b8b1fa3e0d /test/visitors | |
parent | 483d0d30bf783e04dfdb458b65219281dda76cff (diff) | |
download | psych-f4e5e8205ee3b63403a6b6695746046cd663d6d8.zip |
mappings convert
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_to_ruby.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/visitors/test_to_ruby.rb b/test/visitors/test_to_ruby.rb index f514178..db748ca 100644 --- a/test/visitors/test_to_ruby.rb +++ b/test/visitors/test_to_ruby.rb @@ -21,6 +21,13 @@ module Psych assert_equal %w{ foo bar }, seq.to_ruby end + + def test_mapping + mapping = Nodes::Mapping.new + mapping.children << Nodes::Scalar.new('foo') + mapping.children << Nodes::Scalar.new('bar') + assert_equal({'foo' => 'bar'}, mapping.to_ruby) + end end end end |