buuka/test/MyLibTest.hs
2020-12-30 22:09:02 +02:00

14 lines
229 B
Haskell

module Main (main) where
import Test.Tasty
import qualified Test.Database.Migrations as Database.Migrations
tests :: TestTree
tests = testGroup "buuka"
[ Database.Migrations.tests
]
main :: IO ()
main = defaultMain tests