th-test-utils v1.1.0 Release Notes

Release Date: 2020-09-24 // over 3 years ago
    • โœ… Rewrite with runTestQ, allowing for both recoverable Q actions and mocked Q actions in IO.

      The previous tryQ' function can be reimplemented as:

      tryQ' :: Q a -> Q (Either String a)
      tryQ' = tryTestQ unmockedState
      

      with the other helpers defined as before, using tryQ'.


Previous changes from v1.0.0

  • ๐ŸŽ‰ Initial release:

    • โž• Add tryQ, tryQErr, tryQErr' functions