module Test.Utils where import System.Exit doExit :: Bool -> IO () doExit True = exitSuccess doExit False = exitFailure