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

* test/ruby/test_autoload.rb (class TestAutoload): change load target

from Continuation to Date. Becouse Continuation is no longer quiet.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tarui 2014-11-26 13:31:23 +00:00
parent 2128f20863
commit 18a7dade10

View file

@ -4,10 +4,10 @@ require 'thread'
class TestAutoload < Test::Unit::TestCase
def test_autoload_so
# Continuation is always available, unless excluded intentionally.
# Date is always available, unless excluded intentionally.
assert_in_out_err([], <<-INPUT, [], [])
autoload :Continuation, "continuation"
begin Continuation; rescue LoadError; end
autoload :Date, "date"
begin Date; rescue LoadError; end
INPUT
end