diff options
author | Tom Smeding <tom@tomsmeding.com> | 2024-06-03 18:49:08 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2024-06-03 19:24:48 +0200 |
commit | 30d5f7a84c5bf516785a95de51cd0176367df450 (patch) | |
tree | 0543c7761fc216b911a2e9077c5ef2e4ace224ce /test/Main.hs | |
parent | cc193feee38429e1a853cc23365b95e96b206672 (diff) |
Test permInverse
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 5 |
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 + ] |