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

require_relative 'helper'

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