mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-29 00:22:38 +03:00
parent
7cd308f9dd
commit
92e5b4881a
@ -167,6 +167,18 @@ stmTests = toTestList
|
|||||||
|
|
||||||
, djfu "MonadSTM is a MonadFail" (alwaysFailsWith isUncaughtException)
|
, djfu "MonadSTM is a MonadFail" (alwaysFailsWith isUncaughtException)
|
||||||
(atomically $ fail "hello world" :: MonadConc m => m ()) -- avoid an ambiguous type
|
(atomically $ fail "hello world" :: MonadConc m => m ()) -- avoid an ambiguous type
|
||||||
|
|
||||||
|
, djfu "'retry' is not caught by 'catch'" (gives' [True]) $
|
||||||
|
atomically
|
||||||
|
((retry `catchSomeException` \_ -> pure False) `orElse` pure True)
|
||||||
|
|
||||||
|
, djfu "'throw' is not caught by 'orElse'" (gives' [True]) $
|
||||||
|
atomically
|
||||||
|
((throwSTM Overflow `orElse` pure False) `catchSomeException` \_ -> pure True)
|
||||||
|
|
||||||
|
, djfu "'retry' in a nested 'orElse' only aborts the innermost" (gives' [True]) $
|
||||||
|
atomically
|
||||||
|
((retry `orElse` pure True) `orElse` pure False)
|
||||||
]
|
]
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user