Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bats-core/bats-assert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Thiessen <alex.thiessen.de+github@gmail.com>2022-06-05 14:30:51 +0300
committerAlex Thiessen <alex.thiessen.de+github@gmail.com>2022-06-05 14:30:51 +0300
commiteded7890ce4cc0c41effe6abd1efd1ca3064fd68 (patch)
tree6c65ee8f31e2cc997690e9c35f98404101f311a9
parent990c47db7d35ebc24d146442cd353c9482748075 (diff)
README: Add `{assert,refute}_regex` to the overview of functions
Now that the pair of regex functions is complete, mention these in the top overview.
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index c662ab8..3327f5d 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,7 @@ This project provides the following functions:
- [assert_success](#assert_success) / [assert_failure](#assert_failure) Assert exit status is `0` or `1`.
- [assert_output](#assert_output) / [refute_output](#refute_output) Assert output does (or does not) contain given content.
- [assert_line](#assert_line) / [refute_line](#refute_line) Assert a specific line of output does (or does not) contain given content.
+ - [assert_regex](#assert_regex) / [refute_regex](#refute_regex) Assert a parameter does (or does not) match given pattern.
These commands are described in more detail below.