1234567891011121314151617181920212223242526 |
- (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-ascii))
- (ert-deftest test-org-exp/stripping-commas ()
- "Test the stripping of commas from within blocks during export."
- (org-test-at-id "76d3a083-67fa-4506-a41d-837cc48158b5"
-
- (org-narrow-to-subtree)
- (should (string-match
- ", 2"
- (org-export-as-ascii nil nil nil 'string)))))
- (provide 'test-org-exp)
|