Machete.PIDMatcher (Machete v0.3.11)

View Source

Defines a matcher that matches PID values

Summary

Types

Describes the arguments that can be passed to this matcher

t()

Describes an instance of this matcher

Functions

Matches against PID values

Types

opts()

@type opts() :: []

Describes the arguments that can be passed to this matcher

t()

@opaque t()

Describes an instance of this matcher

Functions

pid(opts \\ [])

@spec pid(opts()) :: t()

Matches against PID values

Takes no arguments

Examples:

iex> assert self() ~> pid()
true

iex> refute "a" ~> pid()
false