buuka/test/MyLibTest.hs

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