diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-10-03 20:07:11 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-10-03 20:09:00 +0200 |
commit | f34d0957046324b448f33271612d89b9c1c18cb4 (patch) | |
tree | 0c2b0ef6e41d99b8ffb8e687b1f0298cd1b331b8 /app-emacs | |
parent | dev-python/google-auth: setuptools RDEPEND (diff) | |
download | gentoo-f34d0957046324b448f33271612d89b9c1c18cb4.tar.gz gentoo-f34d0957046324b448f33271612d89b9c1c18cb4.tar.bz2 gentoo-f34d0957046324b448f33271612d89b9c1c18cb4.zip |
app-emacs/regress: Restore longdescription.
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/regress/metadata.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-emacs/regress/metadata.xml b/app-emacs/regress/metadata.xml index c918cdef9591..2281e41d6202 100644 --- a/app-emacs/regress/metadata.xml +++ b/app-emacs/regress/metadata.xml @@ -5,5 +5,28 @@ <email>gnu-emacs@gentoo.org</email> <name>Gentoo GNU Emacs project</name> </maintainer> +<longdescription> + This module provides support for writing and executing regression tests + for Emacs Lisp code. + + This module makes it easy for Emacs lisp programmers to write + complete, well-documented regression tests and to run them often + during the developement and enhancement processes. + + Here's the idea: + 1. The programmer puts one or more test suites directly in the lisp + file, wrapped inside an "eval-when-compile" special form. This + causes the test suites to be available when .el file is loaded + (or when the buffer is evaluated), but not when the .elc file is + loaded. + + 2. The programmer runs the tests in one of two ways: + a. Interactively, with the M-x regress command. + b. Automatically, every time the file is evaluated, by putting + a small bit of code at the end of the file. + + 3. If there are any regressions, a report is produced detailing the + problems. +</longdescription> <stabilize-allarches/> </pkgmetadata> |