dejafu/tests/Tests.hs

11 lines
250 B
Haskell
Raw Normal View History

module Main (main) where
2015-01-26 20:36:25 +03:00
import Control.Monad.Conc.SCT.Tests (doTests')
import Tests.Cases
import System.Exit (exitFailure, exitSuccess)
main :: IO ()
main = do
2015-01-26 20:36:25 +03:00
success <- doTests' id True testCases
if success then exitSuccess else exitFailure