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