diff options
Diffstat (limited to 'users/grfn/xanthous/test/Xanthous/Entities')
-rw-r--r-- | users/grfn/xanthous/test/Xanthous/Entities/RawTypesSpec.hs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/users/grfn/xanthous/test/Xanthous/Entities/RawTypesSpec.hs b/users/grfn/xanthous/test/Xanthous/Entities/RawTypesSpec.hs new file mode 100644 index 000000000000..f5feb8a506db --- /dev/null +++ b/users/grfn/xanthous/test/Xanthous/Entities/RawTypesSpec.hs @@ -0,0 +1,28 @@ +-------------------------------------------------------------------------------- +module Xanthous.Entities.RawTypesSpec (main, test) where +-------------------------------------------------------------------------------- +import Test.Prelude +-------------------------------------------------------------------------------- +import Xanthous.Entities.RawTypes +-------------------------------------------------------------------------------- + +main :: IO () +main = defaultMain test + +test :: TestTree +test = testGroup "Xanthous.Entities.RawTypesSpec" + [ testGroup "CreatureGenerateParams" + [ testBatch $ monoid @CreatureGenerateParams mempty + , testGroup "canGenerate" + [ testProperty "no bounds" $ \level -> + let gps = CreatureGenerateParams Nothing Nothing + in canGenerate level gps + , testProperty "min bound" $ \level minB -> + let gps = CreatureGenerateParams (Just minB) Nothing + in canGenerate level gps === (level >= minB) + , testProperty "max bound" $ \level maxB -> + let gps = CreatureGenerateParams Nothing (Just maxB) + in canGenerate level gps === (level <= maxB) + ] + ] + ] |