test-org-exp.el 593 B

12345678910111213141516171819
  1. ;;; test-org-exp.el --- tests for org-exp.el
  2. ;; Copyright (c) 2010-2012 Eric Schulte
  3. ;; Authors: Eric Schulte
  4. ;; Released under the GNU General Public License version 3
  5. ;; see: http://www.gnu.org/licenses/gpl-3.0.html
  6. ;;; Code:
  7. (ert-deftest test-org-exp/stripping-commas ()
  8. "Test the stripping of commas from within blocks during export."
  9. (org-test-at-id "76d3a083-67fa-4506-a41d-837cc48158b5"
  10. ;; don't strip internal commas
  11. (org-narrow-to-subtree)
  12. (should (string-match
  13. ", 2"
  14. (org-export-as-ascii nil nil nil 'string)))))
  15. (provide 'test-org-exp)