0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 20:37:51 +00:00

test: inline export of raw results

This commit is contained in:
Eric Schulte 2011-06-28 10:03:27 -07:00
parent cc76e76509
commit c399484313

View file

@ -81,7 +81,11 @@
;; 6 should also be inline
(should (re-search-forward "6" nil t))
(should (re-search-forward (regexp-quote "</code>") (point-at-eol) t))
(should (re-search-backward (regexp-quote "<code>") (point-at-bol) t))))))
(should (re-search-backward (regexp-quote "<code>") (point-at-bol) t))
;; 8 should not be quoted
(should (re-search-forward "8" nil t))
(should (not (= ?= (char-after (point)))))
(should (not (= ?= (char-before (- (point) 1)))))))))
(provide 'test-ob-lob)