haskell-hedgehog-classes
haskell-hedgehog-classes copied to clipboard
Hedgehog will eat your typeclass bugs
0.9 is compatible with the current master.
Builds and tests fine
As a common test runner, better integration with tasty and tasty-discover would be great.
It would be nice if `hedgehog-classes` could be integrated with other tasting frameworks, e.g. `hspec`. Currently, when I run `lawsCheck` inside the `hspec` test suite, I see the following slightly...
@chessai can I have a Hackage revision that addresses this?
I assume that `stimes 0 xs` should be `mempty` for all monoids. However, this is something that is easy to miss + many of the implementations out there are "broken"...
Hello. I was trying to find out when a map with a monoid key is a monad, so I defined this: ```haskell newtype Mapnad k v = Mapnad { runMapnad...
To have a law-abiding `MonadIO` means that your monad must be at least as powerful as `IO` - ie, be a transformer over `IO`. Such a monad won't have a...
Would you consider adding or accepting a PR to add lens type class support? eg Prism, Iso
Is there a way to use this package with `GenT` type (without `Identity` being the underlying monad) ? I looked into the haddocks and wasn't able to figure if such...