16 lines
297 B
Haskell
16 lines
297 B
Haskell
module Main (main) where
|
|
|
|
import Test.Tasty
|
|
|
|
import qualified Test.Data.Buuka as Data.Buuka
|
|
import qualified Test.Database.Migrations as Database.Migrations
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "buuka"
|
|
[ Database.Migrations.tests
|
|
, Data.Buuka.tests
|
|
]
|
|
|
|
main :: IO ()
|
|
main = defaultMain tests
|