buuka/test/MyLibTest.hs

14 lines
229 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
import qualified Test.Database.Migrations as Database.Migrations
tests :: TestTree
tests = testGroup "buuka"
[ Database.Migrations.tests
]
2020-12-30 18:35:47 +02:00
main :: IO ()
2020-12-30 22:09:02 +02:00
main = defaultMain tests