Mote
- Package
- purescript-mote
- Repository
- garyb/purescript-mote
Re-exports from Mote.Monad
#MoteT Source
newtype MoteT bracket test m aThe main MoteT / Mote monadic DSL used to describe tests and groups of
tests.
After description via this DSL a Plan can be generated, that can then
finally be interpreted into some target monad.
- The
brackettype represents a type of kindType -> Typekind in which bracketing can be dealt with. This type is higher kinded as the "before" part of a bracket is expressed by a type likebracket r, so that the "after" part can consume it asr -> bracket Unitlater. If bracketing is not required, setting this toConst Voidis a good way to communicate that it is unused/unusable. - The
testtype represents the type of tests. The kind here is only required to beTypebut will usually be something likem Unit(wheremhere is some monad to run the tests in, not themofMoteT). - The
mis an underlying monad that can be used to perform effects while constructing the test suite. This allows for tests to be generated from the filesystem, reading from aReader-based environment, etc.
The bracket and test types are separated to allow for tests and
bracketing to have different constraints and capabilities. In some cases
it might be desirable to run tests with an alternative Reader, or
restrict the kind of effects tests are allowed to perform compared with
the bracketing code.
Instances
Newtype (MoteT bracket test m a) _(Functor m) => Functor (MoteT bracket test m)(Apply m) => Apply (MoteT bracket test m)(Applicative m) => Applicative (MoteT bracket test m)(Bind m) => Bind (MoteT bracket test m)(Monad m) => Monad (MoteT bracket test m)MonadTrans (MoteT bracket test)(MonadAsk r m) => MonadAsk r (MoteT bracket test m)(MonadReader r m) => MonadReader r (MoteT bracket test m)(MonadEff eff m) => MonadEff eff (MoteT bracket test m)
#bracket Source
bracket :: forall resource a m test bracket. Monad m => { after :: resource -> bracket Unit, before :: bracket resource } -> MoteT bracket test m a -> MoteT bracket test m aSpecifies actions to run before and after the following group(s) and/or test(s).
The bracketing is applied to every following group or test individually; it will be repeated when each group or test is run.
Re-exports from Mote.Plan
#foldPlan Source
foldPlan :: forall r i t b. (Entry b t -> i) -> (String -> i) -> (Entry b (Plan b t) -> i) -> (Array i -> r) -> Plan b t -> rEliminates each PlanItem constructor and sequences actions within a
Plan.
This function can be used to inspect the plan, or build derivatives of it, or to define an interpreter for the plan that will actually run the tests within.
- The first function handles tests.
- The second function handles skipped tests.
- The third function handles groups of tests.
- The fourth function deals with sequencing the resulting values from the previous handlers.
This fold only applies one layer at a time, so when building an interpreter it will need to be called recursively within the group handler.