2011-09-12 16:07:21 +00:00
|
|
|
;;; test-org-exp.el --- tests for org-exp.el
|
|
|
|
|
2012-03-19 20:38:12 +00:00
|
|
|
;; Copyright (c) 2010-2012 Eric Schulte
|
2011-09-12 16:07:21 +00:00
|
|
|
;; Authors: Eric Schulte
|
|
|
|
|
|
|
|
;; Released under the GNU General Public License version 3
|
|
|
|
;; see: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
2012-03-19 20:38:12 +00:00
|
|
|
;;; Code:
|
2011-09-07 03:58:51 +00:00
|
|
|
(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"
|
|
|
|
;; don't strip internal commas
|
|
|
|
(org-narrow-to-subtree)
|
|
|
|
(should (string-match
|
2011-09-20 07:44:24 +00:00
|
|
|
", 2"
|
|
|
|
(org-export-as-ascii nil nil nil 'string)))))
|
|
|
|
|
|
|
|
(provide 'test-org-exp)
|