aboutsummaryrefslogtreecommitdiff
path: root/test/Main.hs
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2024-06-03 18:49:08 +0200
committerTom Smeding <tom@tomsmeding.com>2024-06-03 19:24:48 +0200
commit30d5f7a84c5bf516785a95de51cd0176367df450 (patch)
tree0543c7761fc216b911a2e9077c5ef2e4ace224ce /test/Main.hs
parentcc193feee38429e1a853cc23365b95e96b206672 (diff)
Test permInverse
Diffstat (limited to 'test/Main.hs')
-rw-r--r--test/Main.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Main.hs b/test/Main.hs
index d3b97ab..575bb15 100644
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -4,9 +4,12 @@ module Main where
import Test.Tasty
import Tests.C qualified
+import Tests.Permutation qualified
main :: IO ()
main = defaultMain $
testGroup "Tests"
- [Tests.C.tests]
+ [Tests.C.tests
+ ,Tests.Permutation.tests
+ ]