quick-process-0.0.1: test/Driver.hs
module Driver where
import qualified Discovery
import System.Process.Quick.Test.Prelude
main :: IO ()
main = defaultMain =<< testTree
where
testTree :: IO TestTree
testTree = do
tests <- Discovery.tests
pure $ testGroup "quick-process" [ tests ]