summaryrefslogtreecommitdiff
path: root/test/psych/test_scalar.rb
blob: 3cf6b0938ca774ebac3f69c43d0d34711f42eea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-

require 'psych/helper'

module Psych
  class TestScalar < TestCase
    def test_utf_8
      assert_equal "日本語", Psych.load("--- 日本語")
    end
  end
end