diff options
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 + ] |