mirror of
https://github.com/coot/free-category.git
synced 2024-11-26 21:33:47 +03:00
18 lines
273 B
Haskell
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
|
|
]
|