Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 539 Bytes

fn_expect_greater.md

File metadata and controls

23 lines (13 loc) · 539 Bytes

Best: expect_greater

Expects one value is greater than the other value.

Arguments:

  • $1 [string] -- The first value.
  • $2 [string] -- The second value.
  • [$3] "--" -- An optional specifier that enables custom failure messages.
  • [$4] [string] -- The custom failure message pattern, with "%s" for the values provided.

Example:

expect_greater 2 1               # Success
expect_greater 3 2               # Failure
expect_greater 1 2 -- "%s > %s"  # Failure: "Expected 1 > 2"