diff options
author | sanine <sanine.not@pm.me> | 2023-11-30 13:54:44 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-11-30 13:54:44 -0600 |
commit | bf40a269daef0517e2d0fc5961e043ece6ff4837 (patch) | |
tree | 4d337ed89a9ccebf03f815adbab7406e8d98978f /test/Main.hs | |
parent | 587cbadb3e6388c29454ab41c120757f108918fa (diff) |
begin adding world types
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 24666a6..8abc870 100644 --- a/test/Main.hs +++ b/test/Main.hs @@ -5,10 +5,12 @@ import Test.Tasty import qualified MindTest import qualified GenomeTest import qualified LatticeTest +import qualified WorldTypesTest main :: IO () main = defaultMain $ testGroup "all tests" $ [ MindTest.suite , GenomeTest.suite , LatticeTest.suite + , WorldTypesTest.suite ] |