summaryrefslogtreecommitdiff
path: root/test/psych/test_symbol.rb
blob: 2b4470d184f096aa2648feb18c88ff24818d5e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative '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