2fd3e4c9ad
Implement messages almost the same as in the Rust version, only with YAML instead of TOML this time, and a regular old mustache template instead of something handrolled. Besides that, pretty much everything here is the same.
18 lines
451 B
Haskell
18 lines
451 B
Haskell
import Test.Prelude
|
|
import qualified Xanthous.DataSpec
|
|
import qualified Xanthous.Data.EntityMapSpec
|
|
import qualified Xanthous.GameSpec
|
|
import qualified Xanthous.MessageSpec
|
|
import qualified Xanthous.OrphansSpec
|
|
|
|
main :: IO ()
|
|
main = defaultMain test
|
|
|
|
test :: TestTree
|
|
test = testGroup "Xanthous"
|
|
[ Xanthous.DataSpec.test
|
|
, Xanthous.Data.EntityMapSpec.test
|
|
, Xanthous.GameSpec.test
|
|
, Xanthous.MessageSpec.test
|
|
, Xanthous.OrphansSpec.test
|
|
]
|