1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| | ;;; test-org-html.el
;; Copyright (c) ߛ David Maus
;; Authors: David Maus
;; Released under the GNU General Public License version 3
;; see: http://www.gnu.org/licenses/gpl-3.0.html
;;;; Comments:
;; Template test file for Org-mode tests
\f
;;; Code:
(let ((load-path (cons (expand-file-name
".." (file-name-directory
(or load-file-name buffer-file-name)))
load-path)))
(require 'org-test)
(require 'org-test-ob-consts))
\f
;;; Tests
(require 'org-html)
(defmacro org-test-html/export-link (name link expected &optional desc opt-plist)
`(ert-deftest ,(intern (concat "test-org-html/export-link/" name)) ()
,(or desc name)
(should
(string=
(org-test-strip-text-props
(org-html-handle-links ,link ,opt-plist))
,expected))))
(org-test-html/export-link "mailto" "[[mailto:john@example.tld]]"
"<a href=\"mailto:john@example.tld\">mailto:john@example.tld</a>"
"mailto: link without description")
(provide 'test-org-html)
;;; test-org-html.el ends here
|