Restore $VERBOSE

This commit is contained in:
Nobuyoshi Nakada 2019-06-20 18:20:38 +09:00
parent e31602b78d
commit 3077cb6912
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -1,4 +1,7 @@
verbose = $VERBOSE
$VERBOSE = true
begin
require 'minitest/autorun'
require 'racc/static'
require 'fileutils'
@ -100,3 +103,7 @@ module Racc
end
end
end
ensure
$VERBOSE = verbose
end