View Source Machete.IntegerMatcher (Machete v0.2.3)
Defines a matcher that matches integer values
Link to this section Summary
Types
Describes the arguments that can be passed to this matcher
Describes an instance of this matcher
Functions
Matches against integer values
Link to this section Types
Link to this section Functions
Matches against integer values
Takes the following arguments:
positive
: Whentrue
, requires the matched integer be positive or zeronegative
: Whentrue
, requires the matched integer be negative or zerononzero
: Whentrue
, requires the matched integer be nonzeromin
: Requires the matched integer be greater than or equal to the specified valuemax
: Requires the matched integer be less than or equal to the specified value
Examples:
iex> assert 1 ~> integer()
true
iex> assert 1 ~> integer(positive: true)
true
iex> assert 0 ~> integer(positive: true)
true
iex> assert -1 ~> integer(positive: false)
true
iex> refute 0 ~> integer(positive: false)
false
iex> assert -1 ~> integer(negative: true)
true
iex> assert 0 ~> integer(negative: true)
true
iex> assert 1 ~> integer(negative: false)
true
iex> refute 0 ~> integer(negative: false)
false
iex> assert 1 ~> integer(nonzero: true)
true
iex> assert 0 ~> integer(nonzero: false)
true
iex> assert 2 ~> integer(min: 2)
true
iex> assert 2 ~> integer(max: 2)
true