org-mode/testing/lisp/test-ob-exp.el
Eric Schulte 5bafe303aa beginning tests for ob-exp, and related improvements to org-test
- fixed issue in creation of new files
  - fixed issue in org-test-in-file
  - new example file w/o any headlines
2010-10-05 11:54:48 -06:00

37 lines
923 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; test-ob-exp.el
;; Copyright (c) 2010 Eric Schulte
;; Authors: Eric Schulte
;; 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
;;; Code:
(require 'org-test)
;;; Tests
(ert-deftest test-ob-exp/org-babel-exp-src-blocks/w-no-headers ()
"Testing export without any headlines in the org-mode file."
(org-test-in-example-file org-test-no-header-example-file-name
;; export the file to html
(org-export-as-html nil)
;; should create a .html file
(should (file-exists-p (concat
(file-name-sans-extension
org-test-no-header-example-file-name)
".html")))
;; should not create a file with "::" appended to it's name
(should-not (file-exists-p
(concat org-test-no-header-example-file-name "::")))))
(provide 'test-ob-exp)
;;; test-ob-exp.el ends here