1234567891011121314151617181920212223242526272829303132333435363738394041 |
- (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))
- (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)
|