diff options
author | Jim Porter <jporterbugs@gmail.com> | 2022-02-02 18:26:50 -0800 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-02-03 20:02:24 +0100 |
commit | e3516ec28f9a3fc81bffcf2d64a0d9e883a0ff26 (patch) | |
tree | 0634cf1b3a0aef29083b31c956074e57f6a5d353 /test/lisp/eshell/em-extpipe-tests.el | |
parent | 3a388ab4a604f868ab2c1f9b3c63a7f7a3221f7f (diff) | |
download | emacs-e3516ec28f9a3fc81bffcf2d64a0d9e883a0ff26.tar.gz emacs-e3516ec28f9a3fc81bffcf2d64a0d9e883a0ff26.tar.bz2 emacs-e3516ec28f9a3fc81bffcf2d64a0d9e883a0ff26.zip |
Use 'require' to load eshell-tests-helpers
* test/lisp/eshell/eshell-tests.el
* test/lisp/eshell/em-extpipe-tests.el: Load eshell-tests-helpers with
'require'.
* test/lisp/eshell/eshell-tests-helpers.el (eshell-history-file-name):
Define this here so individual test files don't have to.
Diffstat (limited to 'test/lisp/eshell/em-extpipe-tests.el')
-rw-r--r-- | test/lisp/eshell/em-extpipe-tests.el | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/test/lisp/eshell/em-extpipe-tests.el b/test/lisp/eshell/em-extpipe-tests.el index 0879ad5b0ca..a1d15fe73a4 100644 --- a/test/lisp/eshell/em-extpipe-tests.el +++ b/test/lisp/eshell/em-extpipe-tests.el @@ -28,14 +28,10 @@ (require 'ert) (require 'ert-x) (require 'em-extpipe) -(eval-and-compile - (load (expand-file-name "eshell-tests-helpers" - (file-name-directory (or load-file-name - default-directory))))) - -(defvar eshell-history-file-name) -(defvar eshell-test--max-subprocess-time) -(declare-function eshell-command-result-p "eshell-tests-helpers") +(require 'eshell-tests-helpers + (expand-file-name "eshell-tests-helpers" + (file-name-directory (or load-file-name + default-directory)))) (defmacro em-extpipe-tests--deftest (name input &rest body) (declare (indent 2)) |