From: Stefan Kangas Date: Sun, 27 Nov 2022 09:02:04 +0000 (+0100) Subject: Remove tests lacking a copyright assignment for now X-Git-Tag: emacs-29.0.90~1306^2~15^2^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8296164eab;p=emacs.git Remove tests lacking a copyright assignment for now * use-package-tests.el (use-package-test/pre-post-hooks-with-:config) (use-package-test/pre-post-hooks-without-:config): Remove tests. --- diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index ac3dce2c021..b66b08ec117 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el @@ -1505,37 +1505,6 @@ (config) t)))))) -(ert-deftest use-package-test/pre-post-hooks-with-:config () - (let ((use-package-inject-hooks t)) - (match-expansion - (use-package foo :config (config)) - `(progn - (when - (run-hook-with-args-until-failure 'use-package--foo--pre-init-hook) - (run-hooks 'use-package--foo--post-init-hook)) - (require 'foo nil nil) - (when - (run-hook-with-args-until-failure 'use-package--foo--pre-config-hook) - (config) - (run-hooks 'use-package--foo--post-config-hook)) - t)))) - -(ert-deftest use-package-test/pre-post-hooks-without-:config () - ;; https://github.com/jwiegley/use-package/issues/785 - (let ((use-package-inject-hooks t)) - (match-expansion - (use-package foo) - `(progn - (when - (run-hook-with-args-until-failure 'use-package--foo--pre-init-hook) - (run-hooks 'use-package--foo--post-init-hook)) - (require 'foo nil nil) - (when - (run-hook-with-args-until-failure 'use-package--foo--pre-config-hook) - t - (run-hooks 'use-package--foo--post-config-hook)) - t)))) - (ert-deftest use-package-test-normalize/:diminish () (should (equal (use-package-normalize-diminish 'foopkg :diminish nil) '(foopkg-mode)))