summaryrefslogtreecommitdiff
path: root/test/psych/test_symbol.rb
blob: 3226141d022d34ef9e6125f82b7a1293491c8ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'psych/helper'

module Psych
  class TestSymbol < TestCase
    def test_cycle
      assert_cycle :a
    end

    def test_stringy
      assert_cycle :"1"
    end

    def test_load_quoted
      assert_equal :"1", Psych.load("--- :'1'\n")
    end
  end
end