aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-07-07 23:19:03 +0200
committerStefan Kangas2022-07-07 23:21:39 +0200
commit139eb1f845d1ec3e2a26aec5d7fafbcdcbaa5f07 (patch)
tree6d61ddebdd66324a6fe422985864fedf7bd909d6
parentcbfd959e26da13ae872ee11a1c8365abd6906d96 (diff)
downloademacs-139eb1f845d1ec3e2a26aec5d7fafbcdcbaa5f07.tar.gz
emacs-139eb1f845d1ec3e2a26aec5d7fafbcdcbaa5f07.zip
* lisp/emacs-lisp/ert.el (Commentary): Refer to the Info manual.
-rw-r--r--lisp/emacs-lisp/ert.el12
1 files changed, 5 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el
index 262d85f9b43..21bee4c6d8b 100644
--- a/lisp/emacs-lisp/ert.el
+++ b/lisp/emacs-lisp/ert.el
@@ -1,6 +1,6 @@
1;;; ert.el --- Emacs Lisp Regression Testing -*- lexical-binding: t -*- 1;;; ert.el --- Emacs Lisp Regression Testing -*- lexical-binding: t -*-
2 2
3;; Copyright (C) 2007-2008, 2010-2022 Free Software Foundation, Inc. 3;; Copyright (C) 2007-2022 Free Software Foundation, Inc.
4 4
5;; Author: Christian Ohler <ohler@gnu.org> 5;; Author: Christian Ohler <ohler@gnu.org>
6;; Keywords: lisp, tools 6;; Keywords: lisp, tools
@@ -46,12 +46,10 @@
46;; processing further, this is useful for checking the test 46;; processing further, this is useful for checking the test
47;; environment (like availability of features, external binaries, etc). 47;; environment (like availability of features, external binaries, etc).
48;; 48;;
49;; See ERT's info manual as well as the docstrings for more details. 49;; See ERT's Info manual `(ert) Top' as well as the docstrings for
50;; 50;; more details. To see some examples of tests written in ERT, see
51;; To see some examples of tests written in ERT, see its self-tests in 51;; the test suite distributed with the Emacs source distribution (in
52;; ert-tests.el. Some of these are tricky due to the bootstrapping 52;; the "test" directory).
53;; problem of writing tests for a testing tool, others test simple
54;; functions and are straightforward.
55 53
56;;; Code: 54;;; Code:
57 55