branch: externals/org commit 3d7b7881aa481addb6cebfdc1bb312da5b62ccb1 Author: Lukas Epple <em...@lukasepple.de> Commit: Ihor Radchenko <yanta...@posteo.net>
testing/lisp/test-ox-html.el: Add test for clock rendering --- testing/lisp/test-ox-html.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/testing/lisp/test-ox-html.el b/testing/lisp/test-ox-html.el index d969a56698..c64dacae1e 100644 --- a/testing/lisp/test-ox-html.el +++ b/testing/lisp/test-ox-html.el @@ -918,6 +918,25 @@ $x$" "<span class=\"timestamp\"><2025-02-18 Tue 23:59></span>" "<span class=\"timestamp\">[2025-02-17 Mon 17:00]–[2025-02-17 Mon 19:00]</span>")))))) +(ert-deftest ox-html/clock () + "Test rendering of clock elements" + (org-test-with-temp-text " +* Test +:LOGBOOK: +CLOCK: [2025-02-21 Fri 17:43]--[2025-02-21 Fri 17:48] => 0:05 +:END: +" + (let ((export-buffer "*Test HTML Export") + (org-export-show-temporary-buffer nil) + (org-export-with-drawers t) + (org-export-with-clocks t)) + (org-export-to-buffer 'html export-buffer + nil nil nil t) + (with-current-buffer export-buffer + (should (search-forward + "<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)))))) + ;;; Postamble Format