monadology-0.1: test/Main.hs
module Main
( main
) where
import Compose
import Coroutine
import Exception
import Lifecycle
import Prelude
import Test.Tasty
tests :: TestTree
tests = testGroup "monadology" [testCoroutine, testLifecycle, testComposeInner, testException]
main :: IO ()
main = defaultMain tests