Initial query AST

This commit is contained in:
2021-01-02 09:09:38 +02:00
parent e802f66599
commit 55188f514f
6 changed files with 108 additions and 0 deletions

View File

@ -3,12 +3,16 @@ module Main (main) where
import Test.Tasty
import qualified Test.Data.Buuka as Data.Buuka
import qualified Test.Data.Query as Data.Query
import qualified Test.Data.Functor.Foldable as Data.Functor.Foldable
import qualified Test.Database.Migrations as Database.Migrations
tests :: TestTree
tests = testGroup "buuka"
[ Database.Migrations.tests
, Data.Buuka.tests
, Data.Functor.Foldable.tests
, Data.Query.tests
]
main :: IO ()

View File

@ -0,0 +1,6 @@
module Test.Data.Functor.Foldable where
import Test.Tasty
tests :: TestTree
tests = testGroup "Data.Functor.Foldable" []

6
test/Test/Data/Query.hs Normal file
View File

@ -0,0 +1,6 @@
module Test.Data.Query where
import Test.Tasty
tests :: TestTree
tests = testGroup "Data.Query" []