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:
parent
2128f20863
commit
18a7dade10
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue