1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/psych/test_scalar.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
319 B
Ruby
Raw Normal View History

# -*- coding: utf-8 -*-
# frozen_string_literal: true
require_relative 'helper'
module Psych
class TestScalar < TestCase
def test_utf_8
assert_equal "日本語", Psych.load("--- 日本語")
end
def test_some_bytes # Ticket #278
x = "\xEF\xBF\xBD\x1F"
assert_cycle x
end
end
end