packages feed

polysemy-test-0.4.0.0: lib/Polysemy/Test/Data/TestError.hs

{-# options_haddock prune #-}

-- |TestError Newtype, Internal
module Polysemy.Test.Data.TestError where

-- |An error that occured in the test machinery.
newtype TestError =
  TestError { unTestError :: Text }
  deriving (Eq, Show)
  deriving newtype (IsString)