* test/lisp/emacs-lisp/package-vc-resources/test-package-SUFFIX-v0.1.el.in: * test/lisp/emacs-lisp/package-vc-resources/test-package-SUFFIX-v0.2.el.in: Update headers. * test/lisp/emacs-lisp/package-vc-tests.el (prepare-patch) (package-vc-with-tests-environment): Adjust expected values.
29 lines
646 B
Plaintext
29 lines
646 B
Plaintext
;;; test-package-SUFFIX.el --- Test package -*- lexical-binding: t -*-
|
|
|
|
;; Homepage: https://example.com
|
|
;; Maintainer: Test Maintainer <test-maintainer@example.com>
|
|
;; Package-Requires: ((emacs "30.1"))
|
|
;; Version: 0.1
|
|
|
|
;;; Commentary:
|
|
;;
|
|
;; Test package SUFFIX.
|
|
|
|
;;; Code:
|
|
|
|
(require 'test-package-SUFFIX-lib)
|
|
|
|
;;;###autoload
|
|
(defun test-package-SUFFIX-func (arg)
|
|
;; checkdoc-params: (arg)
|
|
"Test function for `test-package-SUFFIX'."
|
|
(test-package-SUFFIX-mac arg))
|
|
|
|
;;;###autoload
|
|
(defun test-package-SUFFIX-old-func ()
|
|
"Old test function for `test-package-SUFFIX'.")
|
|
|
|
(provide 'test-package-SUFFIX)
|
|
|
|
;;; test-package-SUFFIX.el ends here
|