test: Testing caught me doing stupid stuff

This commit is contained in:
vegowotenks 2025-08-22 10:04:23 +02:00
parent cff27337e7
commit c78d261a1b
7 changed files with 87 additions and 6 deletions

View file

@ -1,2 +1,10 @@
-- test framework
import Test.Tasty (defaultMain)
import qualified Test.Tasty as Tasty
import qualified Test.Language.Json.Type
main :: IO ()
main = putStrLn "Test suite not yet implemented"
main = defaultMain $ Tasty.testGroup "all"
[ Test.Language.Json.Type.testGroup
]