1
1
mirror of https://github.com/coot/free-category.git synced 2024-08-17 10:00:53 +03:00
free-category/test/Main.hs
2019-09-02 20:29:14 +00:00

18 lines
273 B
Haskell

module Main (main) where
import Test.Tasty
import qualified Test.Queue
import qualified Test.Cat
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests =
testGroup "free-categories"
-- data structures
[ Test.Queue.tests
, Test.Cat.tests
]