aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/callproc-tests.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/src/callproc-tests.el b/test/src/callproc-tests.el
index 39d2014488a..bf7d47b27f1 100644
--- a/test/src/callproc-tests.el
+++ b/test/src/callproc-tests.el
@@ -17,6 +17,11 @@
17;; You should have received a copy of the GNU General Public License 17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. 18;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
19 19
20
21;;; Commentary:
22;;
23;; Unit tests for src/callproc.c.
24
20;;; Code: 25;;; Code:
21 26
22(require 'ert) 27(require 'ert)
@@ -60,3 +65,5 @@
60 (call-process "c:/nul.exe") 65 (call-process "c:/nul.exe")
61 (error :got-error)))) 66 (error :got-error))))
62 (should have-called-debugger))) 67 (should have-called-debugger)))
68
69;;; callproc-tests.el ends here