mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Suppress a warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46294 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5cd71131b8
commit
49d68ba10d
1 changed files with 5 additions and 0 deletions
|
@ -90,6 +90,9 @@ p Foo::Bar
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_threaded_accessing_inner_constant
|
def test_threaded_accessing_inner_constant
|
||||||
|
# Suppress "warning: loading in progress, circular require considered harmful"
|
||||||
|
old_verbose = $VERBOSE
|
||||||
|
$VERBOSE = false
|
||||||
Tempfile.create(['autoload', '.rb']) {|file|
|
Tempfile.create(['autoload', '.rb']) {|file|
|
||||||
file.puts 'class AutoloadTest; sleep 0.5; X = 1; end'
|
file.puts 'class AutoloadTest; sleep 0.5; X = 1; end'
|
||||||
file.close
|
file.close
|
||||||
|
@ -104,6 +107,8 @@ p Foo::Bar
|
||||||
remove_autoload_constant
|
remove_autoload_constant
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
ensure
|
||||||
|
$VERBOSE = old_verbose
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_nameerror_when_autoload_did_not_define_the_constant
|
def test_nameerror_when_autoload_did_not_define_the_constant
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue