[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole badf1e5281 027/143: Merge remote branch 'rsw'
From: |
ELPA Syncer |
Subject: |
[elpa] externals/hyperbole badf1e5281 027/143: Merge remote branch 'rsw' into rsw |
Date: |
Mon, 19 Feb 2024 15:58:50 -0500 (EST) |
branch: externals/hyperbole
commit badf1e52818f080d2717b0f4ac4272b969d435b2
Merge: d59f27c469 f4fccc5abf
Author: bw <rsw@gnu.org>
Commit: bw <rsw@gnu.org>
Merge remote branch 'rsw' into rsw
---
ChangeLog | 8 ++++++++
test/demo-tests.el | 30 ++++++++++++++++--------------
test/hib-kbd-tests.el | 4 ++--
test/hibtypes-tests.el | 16 ++++++++++------
test/hmouse-drv-tests.el | 13 ++++++++-----
5 files changed, 44 insertions(+), 27 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 9c23b66c46..31bad0208b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2023-12-26 Mats Lidell <matsl@gnu.org>
+
+* test/hmouse-drv-tests.el:
+ test/hibtypes-tests.el:
+ test/hib-kbd-tests.el:
+ test/demo-tests.el: Set enable-local-variables to nil for test cases
+ where DEMO and FAST-DEMO is loaded to avoid getting queried.
+
2023-12-26 Bob Weiner <rsw@gnu.org>
* hpath.el (hpath:to-markup-anchor): If referent-regexp starts with '^', add
diff --git a/test/demo-tests.el b/test/demo-tests.el
index c80bcb85d5..be116cd87e 100644
--- a/test/demo-tests.el
+++ b/test/demo-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 30-Jan-21 at 12:00:00
-;; Last-Mod: 11-Dec-23 at 01:58:53 by Bob Weiner
+;; Last-Mod: 25-Dec-23 at 23:30:20 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -39,7 +39,7 @@
(ert-deftest demo-smart-mouse-keys-ref-test ()
"Go to the header from a #ref."
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward "#Smart Keys")
@@ -50,7 +50,7 @@
(ert-deftest demo-smart-mouse-keys-ebut-test ()
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward "<(Smart")
@@ -61,7 +61,7 @@
(ert-deftest demo-table-of-contents-test ()
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward " \\* Koutl")
@@ -74,7 +74,7 @@
(ert-deftest demo-smart-scrolling-proportional-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward "Table of Contents")
@@ -88,7 +88,7 @@
(ert-deftest demo-smart-scrolling-non-proportional-test ()
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward "Table of Contents")
@@ -127,7 +127,7 @@
(ert-deftest demo-window-grid-22-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(should (hact 'kbd-key "C-h h s f @ 22 RET Q"))
(hy-test-helpers:consume-input-events)
@@ -137,7 +137,7 @@
(ert-deftest demo-window-grid-33-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(should (hact 'kbd-key "C-h h s f @ 33 RET Q"))
(hy-test-helpers:consume-input-events)
@@ -190,7 +190,8 @@
(with-temp-buffer
(insert (format "\"%s\"" (expand-file-name "DEMO" hyperb:dir)))
(goto-char 2)
- (action-key)
+ (let ((enable-local-variables nil))
+ (action-key))
(should (string= "DEMO" (buffer-name))))
(hy-test-helpers:kill-buffer "DEMO")))
@@ -199,7 +200,8 @@
(with-temp-buffer
(insert "<link-to-file-line \"${hyperb:dir}/DEMO\" 5>")
(goto-char 5)
- (action-key)
+ (let ((enable-local-variables nil))
+ (action-key))
(should (string= "DEMO" (buffer-name)))
(should (= 5 (line-number-at-pos (point)))))
(hy-test-helpers:kill-buffer "DEMO")))
@@ -382,7 +384,7 @@
(ert-deftest demo-occur-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(should (hact 'kbd-key "C-h h f o Hyperbole RET"))
(hy-test-helpers:consume-input-events)
@@ -405,7 +407,7 @@
(ert-deftest demo-factorial-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(should (hact 'kbd-key "C-h h a factorial RET"))
(hy-test-helpers:consume-input-events)
@@ -415,7 +417,7 @@
(ert-deftest demo-factorial-ebutton-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(re-search-forward "<(factorial)>")
(forward-char -5)
@@ -465,7 +467,7 @@ Note: Depends on key series in FAST-DEMO and how many files
in
hyberbole folder that starts with kotl."
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "FAST-DEMO")
(goto-char (point-min))
(search-forward "{C--1 C-c @")
diff --git a/test/hib-kbd-tests.el b/test/hib-kbd-tests.el
index 8c2223f46b..87f50c4769 100644
--- a/test/hib-kbd-tests.el
+++ b/test/hib-kbd-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 30-Jan-21 at 12:00:00
-;; Last-Mod: 26-Mar-22 at 11:25:43 by Mats Lidell
+;; Last-Mod: 25-Dec-23 at 23:30:20 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -37,7 +37,7 @@
(ert-deftest kbd-key-hy-demo-factorial-test ()
(skip-unless (not noninteractive))
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
;; Preload demo files to avoid race with *ert* buffer and set
;; *ert* buffer current
(hypb:display-file-with-logo "DEMO")
diff --git a/test/hibtypes-tests.el b/test/hibtypes-tests.el
index 21895fe01c..97f004f1fa 100644
--- a/test/hibtypes-tests.el
+++ b/test/hibtypes-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 20-Feb-21 at 23:45:00
-;; Last-Mod: 11-Dec-23 at 02:08:38 by Bob Weiner
+;; Last-Mod: 25-Dec-23 at 23:30:20 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -57,7 +57,8 @@
(with-temp-buffer
(insert (format "\"%s\"" (expand-file-name "DEMO" hyperb:dir)))
(goto-char 2)
- (ibtypes::pathname)
+ (let ((enable-local-variables nil))
+ (ibtypes::pathname))
(should (string= "DEMO" (buffer-name))))
(kill-buffer "DEMO")))
@@ -66,7 +67,8 @@
(with-temp-buffer
(insert "\"${hyperb:dir}/DEMO\"")
(goto-char 2)
- (ibtypes::pathname)
+ (let ((enable-local-variables nil))
+ (ibtypes::pathname))
(should (string= "DEMO" (buffer-name))))
(kill-buffer "DEMO")))
@@ -98,7 +100,8 @@
(with-temp-buffer
(insert "\"${hyperb:dir}/DEMO#Smart Keys\"")
(goto-char 2)
- (ibtypes::pathname)
+ (let ((enable-local-variables nil))
+ (ibtypes::pathname))
(should (string= "DEMO" (buffer-name)))
(should (looking-at "\* Smart Keys")))
(kill-buffer "DEMO")))
@@ -121,7 +124,8 @@
(with-temp-buffer
(insert "\"${hyperb:dir}/DEMO:3:45\"")
(goto-char 2)
- (ibtypes::pathname-line-and-column)
+ (let ((enable-local-variables nil))
+ (ibtypes::pathname-line-and-column))
(should (string= "DEMO" (buffer-name)))
(should (= (line-number-at-pos) 3))
(should (= (current-column) 45)))
@@ -234,7 +238,7 @@
;; text-toc
(ert-deftest ibtypes::text-toc-test ()
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward " \\* Koutl")
diff --git a/test/hmouse-drv-tests.el b/test/hmouse-drv-tests.el
index 1544020e2f..ea6bdfcd78 100644
--- a/test/hmouse-drv-tests.el
+++ b/test/hmouse-drv-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 28-Feb-21 at 22:52:00
-;; Last-Mod: 11-Dec-23 at 01:57:54 by Bob Weiner
+;; Last-Mod: 26-Dec-23 at 22:44:10 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -105,7 +105,8 @@
(ert-deftest hbut-defil-it ()
(defil defil-path-it "<<<" ">>>" ".*" "${hyperb:dir}/\\&")
- (let ((vc-follow-symlinks nil))
+ (let ((vc-follow-symlinks nil)
+ (enable-local-variables nil))
(unwind-protect
(with-temp-buffer
(insert "<<<DEMO>>>")
@@ -239,7 +240,8 @@
(with-temp-buffer
(insert (format "\"%s\"" (expand-file-name "DEMO" hyperb:dir)))
(goto-char 2)
- (action-key)
+ (let ((enable-local-variables nil))
+ (action-key))
(should (string= "DEMO" (buffer-name))))
(hy-test-helpers:kill-buffer "DEMO")))
@@ -248,7 +250,8 @@
(with-temp-buffer
(insert "\"${hyperb:dir}/DEMO\"")
(goto-char 2)
- (action-key)
+ (let ((enable-local-variables nil))
+ (action-key))
(should (string= "DEMO" (buffer-name))))
(hy-test-helpers:kill-buffer "DEMO")))
@@ -458,7 +461,7 @@
;; text-toc
(ert-deftest hbut-text-toc-test ()
(unwind-protect
- (progn
+ (let ((enable-local-variables nil))
(hypb:display-file-with-logo "DEMO")
(goto-char (point-min))
(re-search-forward "^[ \t]*\\* Koutl")
- [elpa] externals/hyperbole 7657601745 043/143: hyrolo-mode-map - bind {n} and {C-c C-n} to the same command, (continued)
- [elpa] externals/hyperbole 7657601745 043/143: hyrolo-mode-map - bind {n} and {C-c C-n} to the same command, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole e67d0f733f 058/143: Fix edebugging of tests that have not been previously defined, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole fc6df9d652 056/143: Merge remote branch 'rsw' into rsw, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole acec506a2c 061/143: Require hbut so defib is defined, needed for compiling (#430), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 12e714d824 072/143: Move xref extensions to new "hsys-xref.el". Add ibut API extensions, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole a08fd67af3 057/143: Merge pull request #427 from rswgnu/matsl-rsw-add-hyrolo-tests, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 29dda66c3e 059/143: Merge remote branch 'rsw' of hyperbole into rsw, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 19e51dfb0e 009/143: +* hyrolo.el (hyrolo-move-backward, hyrolo-move-forward): Fixes., ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 564c147587 046/143: Add tests for hypb-ert (#429), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 97f4e12386 023/143: hui--link-possible-types - ensure only 1 specific type per test, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole badf1e5281 027/143: Merge remote branch 'rsw' into rsw,
ELPA Syncer <=
- [elpa] externals/hyperbole 00d5af41be 039/143: Add Smart Key support for rsw's new ert-results.el package, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 586a568992 054/143: Update ChangeLog, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 84fe259016 064/143: hyrolo.el - Fix *HyRolo* {n} and {p} movement commands, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 7a5e3071b6 097/143: Merge branch 'rsw' of hyperbole into rsw, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole ac7d6ed874 106/143: Remove unused function (#455), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 678f62a79d 105/143: hyperbole-web-search: when service is a func, let it prompt for term, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole c4325885a0 114/143: Add single file match tests for some hyrolo hide and show commands (#458), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 29fd0c8540 060/143: Update manual for "hsys-flymake.el" and add to hkey-alist, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 721ab10894 063/143: hsys-flymake.el improvements; hyrolo-tests.el improvements, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 270aab31c7 074/143: Matsl rsw fix more warnings reported by ci/cd (#438), ELPA Syncer, 2024/02/19