branch: externals/org commit b0bcc24de4a229dc0b15dff60583394d16f1759d Author: Lukas Epple <em...@lukasepple.de> Commit: Ihor Radchenko <yanta...@posteo.net>
testing/lisp/test-ox-html.el: Add test for rendering of planning --- testing/lisp/test-ox-html.el | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/testing/lisp/test-ox-html.el b/testing/lisp/test-ox-html.el index c64dacae1e..55f4570546 100644 --- a/testing/lisp/test-ox-html.el +++ b/testing/lisp/test-ox-html.el @@ -937,6 +937,23 @@ CLOCK: [2025-02-21 Fri 17:43]--[2025-02-21 Fri 17:48] => 0:05 "<span class=\"timestamp-kwd\">CLOCK:</span> <span class=\"timestamp\">[2025-02-21 Fri 17:43]--[2025-02-21 Fri 17:48] </span> <span class=\"timestamp\">(0:05)</span>" nil t)))))) +(ert-deftest ox-html/planning () + "Test rendering of timestamps in planning elements" + (org-test-with-temp-text " +* Some Item +SCHEDULED: <2025-03-26 Wed> DEADLINE: <2025-03-27 Thu 13:00> CLOSED: [2025-03-25 Tue 19:09] +" + (let ((export-buffer "*Test HTML Export") + (org-export-show-temporary-buffer nil) + (org-export-with-planning t)) + (org-export-to-buffer 'html export-buffer + nil nil nil t) + (with-current-buffer export-buffer + (mapc (lambda (s) (should (search-forward s nil t))) + '("<span class=\"timestamp-kwd\">CLOSED:</span> <span class=\"timestamp\">[2025-03-25 Tue 19:09]</span>" + "<span class=\"timestamp-kwd\">DEADLINE:</span> <span class=\"timestamp\"><2025-03-27 Thu 13:00> </span>" + "<span class=\"timestamp-kwd\">SCHEDULED:</span> <span class=\"timestamp\"><2025-03-26 Wed> </span>")))))) + ;;; Postamble Format