1# -*- coding: utf-8 -*-
2
3require 'psych/helper'
4
5module Psych
6  class TestScalar < TestCase
7    def test_utf_8
8      assert_equal "日本語", Psych.load("--- 日本語")
9    end
10  end
11end
12