|
@@ -106,6 +106,21 @@ See https://list.orgmode.org/20220101200103.GB29829@itccanarias.org/T/#t."
|
|
|
(should (= 2 (count-lines (point-min) (point-max)))))
|
|
|
(org-test-agenda--kill-all-agendas))
|
|
|
|
|
|
+(ert-deftest test-org-agenda/property-timestamp ()
|
|
|
+ "Match timestamps inside property drawer.
|
|
|
+See https://list.orgmode.org/06d301d83d9e$f8b44340$ea1cc9c0$@tomdavey.com"
|
|
|
+ (cl-assert (not org-agenda-sticky) nil "precondition violation")
|
|
|
+ (cl-assert (not (org-test-agenda--agenda-buffers))
|
|
|
+ nil "precondition violation")
|
|
|
+ (let ((org-agenda-span 'day)
|
|
|
+ (org-agenda-files `(,(expand-file-name "examples/agenda-file.org"
|
|
|
+ org-test-dir))))
|
|
|
+ (org-agenda-list nil "<2022-03-22 Tue>")
|
|
|
+ (set-buffer org-agenda-buffer-name)
|
|
|
+ (message "%s" (buffer-string))
|
|
|
+ (should (= 4 (count-lines (point-min) (point-max)))))
|
|
|
+ (org-test-agenda--kill-all-agendas))
|
|
|
+
|
|
|
(ert-deftest test-org-agenda/set-priority ()
|
|
|
"One informative line in the agenda. Check that org-agenda-priority updates the agenda."
|
|
|
(cl-assert (not org-agenda-sticky) nil "precondition violation")
|