diff options
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_yast_builder.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/visitors/test_yast_builder.rb b/test/visitors/test_yast_builder.rb index bcf0cd2..91eef1c 100644 --- a/test/visitors/test_yast_builder.rb +++ b/test/visitors/test_yast_builder.rb @@ -10,6 +10,7 @@ module Psych def test_scalar assert_round_trip 'foo' + assert_round_trip ':foo' assert_round_trip '' end @@ -36,6 +37,10 @@ module Psych assert_round_trip(%w{ a b }) end + def test_symbol + assert_round_trip :foo + end + # http://yaml.org/type/null.html def test_nil assert_round_trip nil |