ruby/test/psych/test_scalar.rb

12 строки
189 B
Ruby

# -*- coding: utf-8 -*-
require 'psych/helper'
module Psych
class TestScalar < TestCase
def test_utf_8
assert_equal "日本語", Psych.load("--- 日本語")
end
end
end