4ef19aa35a
Add support for entities via a port of the EntityMap type, and implement command support starting at basic hjkl.
14 lines
315 B
Haskell
14 lines
315 B
Haskell
import Test.Prelude
|
|
import qualified Xanthous.DataSpec
|
|
import qualified Xanthous.Data.EntityMapSpec
|
|
import qualified Xanthous.GameSpec
|
|
|
|
main :: IO ()
|
|
main = defaultMain test
|
|
|
|
test :: TestTree
|
|
test = testGroup "Xanthous"
|
|
[ Xanthous.DataSpec.test
|
|
, Xanthous.Data.EntityMapSpec.test
|
|
, Xanthous.GameSpec.test
|
|
]
|