about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/wpc/buffer.el
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc/buffer.el')
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/buffer.el21
1 files changed, 0 insertions, 21 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/buffer.el b/users/wpcarro/emacs/.emacs.d/wpc/buffer.el
index 098d499e39..d9503e0d1f 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/buffer.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/buffer.el
@@ -38,9 +38,6 @@
 ;; Library
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-(defconst buffer-enable-tests? t
-  "When t, run the test suite.")
-
 (defconst buffer-install-kbds? t
   "When t, install the keybindings defined herein.")
 
@@ -187,23 +184,5 @@ This function ignores Emacs-generated buffers, i.e. the ones that look like
    "<SPC>" #'buffer-show-previous
    "k" #'kill-buffer))
 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Tests
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(when buffer-enable-tests?
-  (prelude-assert
-   (list-all? #'buffer-emacs-generated?
-              '("*scratch*"
-                "*Messages*"
-                "*shell*"
-                "*Shell Command Output*"
-                "*Occur*"
-                "*Warnings*"
-                "*Help*"
-                "*Completions*"
-                "*Apropos*"
-                "*info*"))))
-
 (provide 'buffer)
 ;;; buffer.el ends here