Idris2Doc : Evince.App

Evince.App

(source)

Definitions

tryApp : App (err::Init) a->IO (Eithererra)
  Run an App computation, capturing the typed error as Either.

Visibility: export
mustError : Showerr=>App (err::Init) a->IO (TestResult ())
  Passes if the App computation produces an error of the expected type.

Visibility: export
mustErrorWith : (Showerr, DecEqerr) =>App (err::Init) a->err->IO (TestResult ())
  Passes if the App computation produces the specific error value.

Visibility: export