diff options
Diffstat (limited to 'users/grfn/xanthous/test/Xanthous/UtilSpec.hs')
-rw-r--r-- | users/grfn/xanthous/test/Xanthous/UtilSpec.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/grfn/xanthous/test/Xanthous/UtilSpec.hs b/users/grfn/xanthous/test/Xanthous/UtilSpec.hs index 8538ea5098ba..01e8e402c54f 100644 --- a/users/grfn/xanthous/test/Xanthous/UtilSpec.hs +++ b/users/grfn/xanthous/test/Xanthous/UtilSpec.hs @@ -2,6 +2,7 @@ module Xanthous.UtilSpec (main, test) where import Test.Prelude import Xanthous.Util +import Control.Monad.State.Lazy (execState) main :: IO () main = defaultMain test @@ -25,4 +26,12 @@ test = testGroup "Xanthous.Util" [ testProperty "takeWhileInclusive (const True) ≡ id" $ \(xs :: [Int]) -> takeWhileInclusive (const True) xs === xs ] + , testGroup "endoTimes" + [ testCase "endoTimes 4 succ 5" + $ endoTimes (4 :: Int) succ (5 :: Int) @?= 9 + ] + , testGroup "modifyKL" + [ testCase "_1 += 1" + $ execState (modifyKL _1 $ pure . succ) (1 :: Int, 2 :: Int) @?= (2, 2) + ] ] |