diff options
| author | adelon <22380201+adelon@users.noreply.github.com> | 2026-08-06 17:54:00 +0200 |
|---|---|---|
| committer | adelon <22380201+adelon@users.noreply.github.com> | 2026-08-06 17:54:00 +0200 |
| commit | 82328890108bae64b372b8d58620ebc62699de76 (patch) | |
| tree | 575404c6b425c19259c0ded296f1c8ffb7ff0e2b /source/Felix/Test/All.hs | |
| parent | 1a25421c2a168d420581358c8733fcd8f36f379b (diff) | |
Diffstat (limited to 'source/Felix/Test/All.hs')
| -rw-r--r-- | source/Felix/Test/All.hs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/Felix/Test/All.hs b/source/Felix/Test/All.hs new file mode 100644 index 0000000..7cdc49c --- /dev/null +++ b/source/Felix/Test/All.hs @@ -0,0 +1,14 @@ +module Felix.Test.All where + + +import Base +import Felix.Test.Golden +import Felix.Test.Unit +import Test.Tasty + + +runTests :: IO () +runTests = defaultMain =<< tests + +tests :: IO TestTree +tests = testGroup "all tests" <$> sequence [goldenTests, return unitTests] |
