packages feed

effectful-zoo-0.0.3.0: components/hedgehog/Effectful/Zoo/Hedgehog/Data/TestResult.hs

module Effectful.Zoo.Hedgehog.Data.TestResult
  ( TestResult(..),
  ) where

import HaskellWorks.Prelude
import Hedgehog.Internal.Property qualified as H

data TestResult a
  = TestResult a
  | TestFailure H.Failure
  | TestError SomeException