diff options
author | sanine <sanine.not@pm.me> | 2023-11-29 02:59:51 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-11-29 02:59:51 -0600 |
commit | a506d45e16922bbda123f92dad55959694ccc2df (patch) | |
tree | 22df35c21398f907f0018c1452d0ffaa00f45cae /test/Main.hs | |
parent | e8d7a5237c666a40e14f3709289329fd8c2cb7d2 (diff) |
implement individual gene mutation functions
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Main.hs b/test/Main.hs index 8847a07..907bbdd 100644 --- a/test/Main.hs +++ b/test/Main.hs @@ -3,8 +3,10 @@ module Main (main) where import Test.Tasty import qualified MindTest +import qualified GenomeTest main :: IO () main = defaultMain $ testGroup "all tests" $ [ MindTest.suite + , GenomeTest.suite ] |