branch: externals/shell-command+ commit 1081933aee068eaabedc936f9c2c254b32b4b32b Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Fix checkdoc complaints in shell-command+-tests.el --- shell-command+-tests.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/shell-command+-tests.el b/shell-command+-tests.el index dc59c0f..d7c53a5 100644 --- a/shell-command+-tests.el +++ b/shell-command+-tests.el @@ -17,6 +17,10 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; Tests for the `shell-command+' parsers. + ;;; Code: (require 'ert) @@ -142,7 +146,7 @@ (should (string= rest (concat "command \\%"))))) (ert-deftest sc+-expand () - "Test that `shell-command+-expand-path' works as expected" + "Test that `shell-command+-expand-path' works as expected." (let ((default-directory "/some/path/to/dir")) (pcase-dolist (`(,path . ,expand) '(("." . "/some/path/to/dir") @@ -155,7 +159,7 @@ expand))))) (ert-deftest sc+-tokenize () - "Test that `shell-command+-tokenize' works as expected" + "Test that `shell-command+-tokenize' works as expected." (pcase-dolist (`(,args ,expand ,list) '(("a b c" nil ("a" "b" "c")) ("a \"b c\" d" nil ("a" "b c" "d"))