wrap parfait tests in module and boot

This commit is contained in:
Torsten Ruger
2018-04-26 12:31:37 +03:00
parent 30ba626cf9
commit a7207a9984
18 changed files with 1001 additions and 976 deletions

View File

@ -1,10 +1,10 @@
require_relative "../helper"
require_relative "helper"
module Parfait
class TestInteger < MiniTest::Test
class TestInteger < ParfaitTest
def setup
Risc.machine.boot
super
@int = Integer.new(10)
end