Surpress warnings: possibly useless use of :: in void context

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-02-05 13:48:45 +00:00
Родитель e66eec9284
Коммит 0efad539ed
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -23,13 +23,13 @@ $:.unshift(File.expand_path('..', __FILE__)+'/./foo')
module Foo module Foo
autoload :Bar, 'bar' autoload :Bar, 'bar'
end end
Foo::Bar p Foo::Bar
INPUT INPUT
end end
open(tmpfiles[1], 'w') do |f| open(tmpfiles[1], 'w') do |f|
f.puts 'class Foo::Bar; end' f.puts 'class Foo::Bar; end'
end end
assert_in_out_err([tmpfiles[0]], "", [], []) assert_in_out_err([tmpfiles[0]], "", ["Foo::Bar"], [])
ensure ensure
File.unlink(*tmpfiles) rescue nil if tmpfiles File.unlink(*tmpfiles) rescue nil if tmpfiles
tmpdirs.each {|dir| Dir.rmdir(dir)} tmpdirs.each {|dir| Dir.rmdir(dir)}