[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole 8d9b7f0dde 032/143: hyrolo-tests.el - "*HyRol
From: |
ELPA Syncer |
Subject: |
[elpa] externals/hyperbole 8d9b7f0dde 032/143: hyrolo-tests.el - "*HyRolo*" literal to `hyrolo-display-buffer' var |
Date: |
Mon, 19 Feb 2024 15:58:50 -0500 (EST) |
branch: externals/hyperbole
commit 8d9b7f0dde1dff8455f05e99bcdd9767d564ad22
Author: bw <rsw@gnu.org>
Commit: bw <rsw@gnu.org>
hyrolo-tests.el - "*HyRolo*" literal to `hyrolo-display-buffer' var
---
test/hyrolo-tests.el | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/test/hyrolo-tests.el b/test/hyrolo-tests.el
index 786a60012f..e63b29b63d 100644
--- a/test/hyrolo-tests.el
+++ b/test/hyrolo-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 19-Jun-21 at 22:42:00
-;; Last-Mod: 28-Dec-23 at 12:48:26 by Mats Lidell
+;; Last-Mod: 28-Dec-23 at 22:16:53 by Bob Weiner
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -294,13 +294,13 @@ and {b} the previous same level cell."
(unwind-protect
(progn
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 4))
(dolist (f (list org-file kotl-file md-file outl-file))
(should (= (how-many (concat "@loc> \"" f "\"")) 1))))
(dolist (f (list org-file kotl-file md-file outl-file))
(hy-delete-file-and-buffer f))
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-org-heading ()
@@ -311,7 +311,7 @@ and {b} the previous same level cell."
(unwind-protect
(progn
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -322,7 +322,7 @@ and {b} the previous same level cell."
(should (equal (current-buffer) (find-buffer-visiting org-file)))
(should (looking-at-p "* heading")))
(hy-delete-file-and-buffer org-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-kotl-heading ()
@@ -339,7 +339,7 @@ and {b} the previous same level cell."
(kotl-mode:newline 1)
(insert "more")
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -348,7 +348,7 @@ and {b} the previous same level cell."
(should (equal (current-buffer) (find-buffer-visiting kotl-file)))
(should (looking-at-p "heading")))
(hy-delete-file-and-buffer kotl-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-outl-heading ()
@@ -359,7 +359,7 @@ and {b} the previous same level cell."
(unwind-protect
(progn
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -368,7 +368,7 @@ and {b} the previous same level cell."
(should (equal (current-buffer) (find-buffer-visiting outl-file)))
(should (looking-at-p "* heading")))
(hy-delete-file-and-buffer outl-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-md-heading ()
@@ -379,7 +379,7 @@ and {b} the previous same level cell."
(unwind-protect
(progn
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -388,7 +388,7 @@ and {b} the previous same level cell."
(should (equal (current-buffer) (find-buffer-visiting md-file)))
(should (looking-at-p "# heading")))
(hy-delete-file-and-buffer md-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-kotl-heading-level-2 ()
@@ -408,7 +408,7 @@ Match a string in a level 2 child cell."
(kotl-mode:newline 1)
(insert "more")
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -417,7 +417,7 @@ Match a string in a level 2 child cell."
(should (equal (current-buffer) (find-buffer-visiting kotl-file)))
(should (looking-at-p "heading")))
(hy-delete-file-and-buffer kotl-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(ert-deftest hyrolo-fgrep-and-goto-next-visible-kotl-heading-cell-2 ()
@@ -437,7 +437,7 @@ Match a string in the second cell."
(kotl-mode:newline 1)
(insert "more")
(hyrolo-fgrep "string")
- (should (string= (buffer-name) "*HyRolo*"))
+ (should (string= (buffer-name) hyrolo-display-buffer))
(should (= (how-many "@loc>") 1))
(should (looking-at-p "==="))
(hyrolo-next-visible-heading 1)
@@ -446,7 +446,7 @@ Match a string in the second cell."
(should (equal (current-buffer) (find-buffer-visiting kotl-file)))
(should (looking-at-p "heading")))
(hy-delete-file-and-buffer kotl-file)
- (kill-buffer "*HyRolo*")
+ (kill-buffer hyrolo-display-buffer)
(delete-directory temporary-file-directory))))
(provide 'hyrolo-tests)
- [elpa] externals/hyperbole 9def89866a 112/143: HyRolo - (hyrolo-markdown-mode): Add missing (require 'markdown-mode), (continued)
- [elpa] externals/hyperbole 9def89866a 112/143: HyRolo - (hyrolo-markdown-mode): Add missing (require 'markdown-mode), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole cf6c291eae 124/143: Rename ibut:act to ibut:act-label, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole c0f33ab989 095/143: hsys-org-fix-version - fix to reload Org libs from the proper path, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole f40a30d11c 127/143: Use actionv4 (#465), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 5d27b22695 129/143: Add overview and top-level outline tests, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 6befc489c5 131/143: Autoload `hypb:add-to-invisibility-spec' used in kotl-mode, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole c5b276b61e 142/143: HyRolo - `hyrolo-outline-minor-mode' expands invisible text at point, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 93ff5acf4b 140/143: hyrolo.el - Add default hyrolo-entry-group-number for hyrolo-mode, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole b3a0a7d2e2 038/143: Merge remote branch 'rsw' of hyperbole into rsw, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 6c7b8e5afb 048/143: Add helper for generating org files + two tests using the matches, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 8d9b7f0dde 032/143: hyrolo-tests.el - "*HyRolo*" literal to `hyrolo-display-buffer' var,
ELPA Syncer <=
- [elpa] externals/hyperbole c2bf47c15b 068/143: xref is used by etags since 26.1 so use it unconditionally (#432), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 327f53f078 069/143: Mock y-or-n-p to avoid being prompted (#433), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole e88a3873ed 073/143: htype:def-symbol, htype:names, actype:def-symbol - Call update, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole eeb6aacd9f 075/143: Add more hyrolo show, hide and movement tests (#436), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 47d87c252f 113/143: HyRolo - resolve all outline movement issues and tests, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 7b50db7eb0 085/143: Matsl rsw forward backward same level tests (#443), ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 3d80bcbaf4 109/143: Merge branch 'rsw' of hyperbole into rsw, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 1078846a45 120/143: Update generation of README.md.html for increased reliability, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 970a5573f3 133/143: Merge branch 'rsw' into matsl-rsw-add-top-view-n-overview-tests, ELPA Syncer, 2024/02/19
- [elpa] externals/hyperbole 7c7aae7206 052/143: Add edit entry test, fix regular expressions, ELPA Syncer, 2024/02/19