summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/org-agenda-config.el2
-rw-r--r--tests/test-custom-org-agenda-functions.el.disabled94
2 files changed, 0 insertions, 96 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el
index c7aac99b..c86ac6a3 100644
--- a/modules/org-agenda-config.el
+++ b/modules/org-agenda-config.el
@@ -244,7 +244,6 @@ The agenda is rebuilt from all sources before display, including:
(defun cj/add-timestamp-to-org-entry (s)
"Add an event with time S to appear underneath the line-at-point.
-
This allows a line to show in an agenda without being scheduled or a deadline."
(interactive "sTime: ")
(defvar cj/timeformat "%Y-%m-%d %a")
@@ -253,7 +252,6 @@ This allows a line to show in an agenda without being scheduled or a deadline."
(open-line 1)
(forward-line 1)
(insert (concat "<" (format-time-string cj/timeformat (current-time)) " " s ">" ))))
-;;(global-set-key (kbd "M-t") #'cj/add-timestamp-to-org-entry)
;; --------------------------- Notifications / Alerts --------------------------
;; send libnotify notifications for agenda items
diff --git a/tests/test-custom-org-agenda-functions.el.disabled b/tests/test-custom-org-agenda-functions.el.disabled
deleted file mode 100644
index 44f9f43d..00000000
--- a/tests/test-custom-org-agenda-functions.el.disabled
+++ /dev/null
@@ -1,94 +0,0 @@
-;;; test-custom-org-agenda-functions.el --- Tests for custom functions in org-agenda -*- lexical-binding: t; -*-
-
-;;; Commentary:
-;; This tests the custom functions created to build the main agenda in org-agenda-config.el
-
-;;; Code:
-
-(add-to-list 'load-path (concat user-emacs-directory "modules"))
-(require 'org-agenda-config)
-
-(ert-deftest test-cj/org-skip-subtree-if-habit-positive ()
- (with-temp-buffer
- (insert "* TODO [#A] Test task\n")
- (insert ":PROPERTIES:\n")
- (insert ":STYLE: habit\n")
- (insert ":RESET_CHECK_BOXES: t\n")
- (insert ":END:\n")
- (org-mode)
- (goto-char (point-min))
- (should (not (eq nil (cj/org-skip-subtree-if-habit))))))
-
-(ert-deftest test-cj/org-skip-subtree-if-habit-negative ()
- (with-temp-buffer
- (insert "* TODO [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-habit)))))
-
-(ert-deftest test-cj/org-skip-subtree-if-priority-positive ()
- (with-temp-buffer
- (insert "* TODO [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (not (eq nil (cj/org-skip-subtree-if-priority ?A))))))
-
-(ert-deftest test-cj/org-skip-subtree-if-priority-negative ()
- (erase-buffer)
- (insert "* TODO [#B] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-priority ?A))))
-
-(ert-deftest test-cj/org-skip-subtree-if-priority-boundary0 ()
- (erase-buffer)
- (insert "* TODO Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-priority ?A))))
-
-(ert-deftest test-cj/org-skip-subtree-if-priority-boundary1 ()
- (erase-buffer)
- (insert "* Test entry\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-priority ?A))))
-
-(ert-deftest test-cj/org-skip-subtree-if-keyword-positive ()
- (with-temp-buffer
- (insert "* TODO [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (not (eq nil (cj/org-skip-subtree-if-keyword '("TODO")))))))
-
-(ert-deftest test-cj/org-skip-subtree-if-keyword-positive-multiple ()
- (with-temp-buffer
- (insert "* PROJECT Test entry\n")
- (org-mode)
- (goto-char (point-min))
- (should (not (eq nil (cj/org-skip-subtree-if-keyword '("TODO" "PROJECT")))))))
-
-(ert-deftest test-cj/org-skip-subtree-if-keyword-negative ()
- (erase-buffer)
- (insert "* PROJECT [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-keyword '("TODO")))))
-
-(ert-deftest test-cj/org-skip-subtree-if-keyword-negative-superset ()
- (erase-buffer)
- (insert "* PROJECT [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-keyword '("TODOTODO")))))
-
-(ert-deftest test-cj/org-skip-subtree-if-keyword-negative-multiple ()
- (erase-buffer)
- (insert "* PROJECT [#A] Test task\n")
- (org-mode)
- (goto-char (point-min))
- (should (eq nil (cj/org-skip-subtree-if-keyword '("TODO" "DONE")))))
-
-
-(provide 'test-custom-org-agenda-functions)
-;;; test-custom-org-agenda-functions.el ends here.