aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2021-12-30 17:59:07 +0100
committerPhilipp Stephani2021-12-30 17:59:07 +0100
commitd0974e294d6af4e1e89e1e2640bbd92c511c028a (patch)
treed95f91b37d7f7fc60e655b0e21bcab17d3ec649f
parent097452efbc0d087fbff401651bc6379721202243 (diff)
downloademacs-d0974e294d6af4e1e89e1e2640bbd92c511c028a.tar.gz
emacs-d0974e294d6af4e1e89e1e2640bbd92c511c028a.zip
* lisp/emacs-lisp/ert.el (ert-select-tests): Document new error.
-rw-r--r--lisp/emacs-lisp/ert.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el
index e3e85b5cefb..70ce3a71b23 100644
--- a/lisp/emacs-lisp/ert.el
+++ b/lisp/emacs-lisp/ert.el
@@ -950,7 +950,8 @@ t -- Selects UNIVERSE.
950:expected, :unexpected -- Select tests according to their most recent result. 950:expected, :unexpected -- Select tests according to their most recent result.
951a string -- A regular expression selecting all tests with matching names. 951a string -- A regular expression selecting all tests with matching names.
952a test -- (i.e., an object of the ert-test data-type) Selects that test. 952a test -- (i.e., an object of the ert-test data-type) Selects that test.
953a symbol -- Selects the test that the symbol names, errors if none. 953a symbol -- Selects the test that the symbol names, signals an
954 `ert-test-unbound' error if none.
954\(member TESTS...) -- Selects the elements of TESTS, a list of tests 955\(member TESTS...) -- Selects the elements of TESTS, a list of tests
955 or symbols naming tests. 956 or symbols naming tests.
956\(eql TEST) -- Selects TEST, a test or a symbol naming a test. 957\(eql TEST) -- Selects TEST, a test or a symbol naming a test.