summaryrefslogtreecommitdiff
path: root/test/racc
diff options
context:
space:
mode:
Diffstat (limited to 'test/racc')
-rw-r--r--test/racc/helper.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/racc/helper.rb b/test/racc/helper.rb
index bb31cfc236..e022d1b23e 100644
--- a/test/racc/helper.rb
+++ b/test/racc/helper.rb
@@ -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