test-ob-exp: fix failing test

* testing/lisp/test-ob-exp.el (ob-exp/export-from-a-temp-buffer):
  Check for the correct expected output so the test stops failing.
This commit is contained in:
Achim Gratz 2014-09-20 21:54:21 +02:00
parent 1b17e8c8da
commit 1113e3e027
1 changed files with 3 additions and 3 deletions

View File

@ -259,7 +259,6 @@ Here is one at the end of a line. =2=
result)))))
(ert-deftest ob-exp/export-from-a-temp-buffer ()
:expected-result :failed
(org-test-with-temp-text
"
#+Title: exporting from a temporary buffer
@ -279,8 +278,9 @@ Here is one at the end of a line. =2=
#+END_SRC
"
(let* ((ascii (org-export-as 'ascii)))
(should (string-match (regexp-quote (format nil "%S" '(:foo :bar)))
ascii)))))
(should (string-match
(regexp-quote " :foo :bar \n")
ascii)))))
(ert-deftest ob-export/export-with-results-before-block ()
"Test export when results are inserted before source block."