about summary refs log tree commit diff
path: root/users/grfn/xanthous/test/Xanthous/Game/StateSpec.hs
blob: 3267d8ef9e9cd6f9708c566eea5b0cdc48861d16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--------------------------------------------------------------------------------
module Xanthous.Game.StateSpec (main, test) where
--------------------------------------------------------------------------------
import           Test.Prelude
--------------------------------------------------------------------------------
import           Xanthous.Game.State
import           Xanthous.Entities.Raws (raws, entityFromRaw)
--------------------------------------------------------------------------------

main :: IO ()
main = defaultMain test

test :: TestTree
test = testGroup "Xanthous.Game.StateSpec"
  [ testGroup "entityTypeName"
    [ testCase "for a creature" $
        let gormlakRaw = raws ^?! ix "gormlak"
            creature = entityFromRaw gormlakRaw
        in entityTypeName creature @?= "Creature"
    , testCase "for an item" $
        let stickRaw = raws ^?! ix "stick"
            item = entityFromRaw stickRaw
        in entityTypeName item @?= "Item"
    ]
  ]