Module

Test.PMock.Param

Package
purescript-pmock
Repository
pujoheadsoft/purescript-pmock

#Param Source

data Param v

Constructors

Instances

#ConsGen Source

class ConsGen a b r | a -> r, b -> r where

Members

Instances

#(:>) Source

Operator alias for Test.PMock.Param.cons (right-associative / precedence 8)

#value Source

value :: forall v. Param v -> v

#param Source

param :: forall a. a -> Param a

#Matcher Source

newtype Matcher v

#matcher Source

matcher :: forall a. (a -> Boolean) -> String -> Param a

#any Source

any :: forall a. Param a

#NotMatcher Source

class NotMatcher a r | a -> r where

Members

Instances

#LogicalMatcher Source

class LogicalMatcher a b r | a -> r, b -> r where

Members

  • or :: a -> b -> r
  • and :: a -> b -> r

Instances