Use test_mode on Reline::History::Test for encoding

This commit is contained in:
aycabta 2020-01-26 12:58:25 +09:00
Родитель c257d81186
Коммит 0aa5195262
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,10 @@ require_relative 'helper'
require "reline/history"
class Reline::History::Test < Reline::TestCase
def setup
Reline.send(:test_mode)
end
def test_ancestors
assert_equal(Reline::History.ancestors.include?(Array), true)
end