test-org-html.el 884 B

1234567891011121314151617181920212223242526272829303132
  1. ;;; test-org-html.el
  2. ;; Copyright (c) ߛ David Maus
  3. ;; Authors: David Maus
  4. ;; Released under the GNU General Public License version 3
  5. ;; see: http://www.gnu.org/licenses/gpl-3.0.html
  6. ;;;; Comments:
  7. ;; Template test file for Org-mode tests
  8. ;;; Code:
  9. (unless (featurep 'org-html)
  10. (signal 'missing-test-dependency "Support for Org-html"))
  11. (defmacro org-test-html/export-link (name link expected &optional desc opt-plist)
  12. `(ert-deftest ,(intern (concat "test-org-html/export-link/" name)) ()
  13. ,(or desc name)
  14. (should
  15. (string=
  16. (org-test-strip-text-props
  17. (org-html-handle-links ,link ,opt-plist))
  18. ,expected))))
  19. (org-test-html/export-link "mailto" "[[mailto:john@example.tld]]"
  20. "<a href=\"mailto:john@example.tld\">mailto:john@example.tld</a>"
  21. "mailto: link without description")
  22. (provide 'test-org-html)
  23. ;;; test-org-html.el ends here