buuka/test/MyLibTest.hs

20 lines
466 B
Haskell
Raw Normal View History

2020-12-30 18:35:47 +02:00
module Main (main) where
2020-12-30 22:09:02 +02:00
import Test.Tasty
2020-12-31 08:51:37 +02:00
import qualified Test.Data.Buuka as Data.Buuka
2021-01-02 09:09:38 +02:00
import qualified Test.Data.Query as Data.Query
import qualified Test.Data.Functor.Foldable as Data.Functor.Foldable
2020-12-30 22:09:02 +02:00
import qualified Test.Database.Migrations as Database.Migrations
tests :: TestTree
tests = testGroup "buuka"
[ Database.Migrations.tests
2020-12-31 08:51:37 +02:00
, Data.Buuka.tests
2021-01-02 09:09:38 +02:00
, Data.Functor.Foldable.tests
, Data.Query.tests
2020-12-30 22:09:02 +02:00
]
2020-12-30 18:35:47 +02:00
main :: IO ()
2020-12-30 22:09:02 +02:00
main = defaultMain tests