not package:skeletest
A predicate checking if the input does not match the given predicate
>>> Just 2 `shouldSatisfy` P.just (P.not (P.eq 1))
A predicate checking if the input is Nothing
>>> Nothing `shouldSatisfy` P.nothing
Assert that the given input should not match the given value.
Equivalent to
actual shouldNotSatisfy P.eq expected
Assert that the given input should not satisfy the given predicate.