ribosome-test-0.4.0.0: test/TestError.hs
module TestError where
import Hedgehog (TestT)
import Ribosome.Control.Monad.Ribo (Nvim, NvimE, Ribo)
import Ribosome.Data.Mapping (MappingError)
import Ribosome.Error.Report.Class (ReportError(..))
import Ribosome.Log (showError)
import Ribosome.Msgpack.Error (DecodeError)
import Ribosome.Nvim.Api.RpcCall (RpcError)
data TestError =
Rpc RpcError
|
Decode DecodeError
|
Mapping MappingError
deriving (Show, Generic, ReportError)
deepPrisms ''TestError
handleTestError :: TestError -> Ribo s TestError ()
handleTestError =
showError "error in test:"
type RiboTest a = TestT (Ribo () TestError) a
type RiboT a = Ribo () TestError a
instance (Nvim m, MonadDeepError TestError RpcError m) => NvimE TestError (TestT m) where