blob: e6b76975a6ae48bdfc2466f995da34bc87eef039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- coding: utf-8 -*-
require_relative 'helper'
module Psych
class TestScalar < TestCase
def test_utf_8
assert_equal "æ¥æ¬èª", Psych.load("--- æ¥æ¬èª")
end
end
end
|