about summary refs log tree commit diff
path: root/users/aspen/xanthous/test/Xanthous/Entities/CharacterSpec.hs
blob: 734cce1efbbe73a5b260b37a3f5fa76b779d9ce3 (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
{-# OPTIONS_GHC -Wno-type-defaults #-}
--------------------------------------------------------------------------------
module Xanthous.Entities.CharacterSpec (main, test) where
--------------------------------------------------------------------------------
import           Test.Prelude
--------------------------------------------------------------------------------
import           Xanthous.Entities.Character
import           Xanthous.Util (endoTimes)
--------------------------------------------------------------------------------

main :: IO ()
main = defaultMain test

test :: TestTree
test = testGroup "Xanthous.Entities.CharacterSpec"
  [ testGroup "Knuckles"
    [ testBatch $ monoid @Knuckles mempty
    , testGroup "damageKnuckles"
      [ testCase "caps at 5" $
          let knuckles' = endoTimes 6 damageKnuckles mempty
          in _knuckleDamage knuckles' @?= 5
      ]
    ]
  ]