start rewriting for parfait #25

just some infrastructure for now.
This commit is contained in:
Torsten Ruger
2019-03-05 20:36:40 +02:00
parent 11c5389e24
commit b4b1e6e13b
4 changed files with 76 additions and 3 deletions

View File

@ -13,5 +13,11 @@ module Ruby
FIXMERubyXCompiler.new(input).ruby_to_vool
end
def assert_raises_muted &block
orig_stdout = $stdout
$stdout = StringIO.new
assert_raises &block
$stdout = orig_stdout
end
end
end