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
|
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
|
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
|