summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-09-26 23:45:04 +0200
committerBastien Guerry <bzg@altern.org>2012-09-26 23:45:04 +0200
commit4f2c79cb49982d270ecad97a38053e5d903a24f2 (patch)
treeaa41f8dd2a886d3265750f666f342806b8da67eb
parentfdc795bb095d49cf1a9a84f68b45fab19bc33d6b (diff)
parent1653759c25fc2a0d3bc14d61602ee88ad95df466 (diff)
downloadorg-mode-4f2c79cb49982d270ecad97a38053e5d903a24f2.tar.gz
Merge branch 'maint' of orgmode.org:org-mode into maint
-rw-r--r--testing/lisp/test-ob.el84
1 files changed, 2 insertions, 82 deletions
diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el
index 37ee080..127e1d2 100644
--- a/testing/lisp/test-ob.el
+++ b/testing/lisp/test-ob.el
@@ -814,86 +814,6 @@ trying to find the :END: marker."
(should (search-forward "[[file:foo][bar]]" nil t))
(should (search-forward "[[file:foo][foo]]" nil t))))
-(ert-deftest test-ob/org-babel-remove-result--results-wrap ()
- "Test `org-babel-remove-result' with :results wrap."
- (test-ob-verify-result-and-removed-result
- ":RESULTS:
-hello there
-:END:"
-
- "* org-babel-remove-result
-
-#+begin_src emacs-lisp :results wrap
-\"hello there\"
-#+end_src
-
-* next heading"))
-
-(ert-deftest test-ob/org-babel-remove-result--results-org ()
- "Test `org-babel-remove-result' with :results org."
- (test-ob-verify-result-and-removed-result
- "#+BEGIN_ORG
-* heading
-** subheading
-content
-#+END_ORG"
-
-"* org-babel-remove-result
-#+begin_src emacs-lisp :results org
-\"* heading
-** subheading
-content\"
-#+end_src
-
-* next heading"))
-
-(ert-deftest test-ob/org-babel-remove-result--results-html ()
- "Test `org-babel-remove-result' with :results html."
- (test-ob-verify-result-and-removed-result
- "#+BEGIN_HTML
-<head><body></body></head>
-#+END_HTML"
-
-"* org-babel-remove-result
-#+begin_src emacs-lisp :results html
-\"<head><body></body></head>\"
-#+end_src
-
-* next heading"))
-
-(ert-deftest test-ob/org-babel-remove-result--results-latex ()
- "Test `org-babel-remove-result' with :results latex."
- (test-ob-verify-result-and-removed-result
- "#+BEGIN_LaTeX
-Line 1
-Line 2
-Line 3
-#+END_LaTeX"
-
-"* org-babel-remove-result
-#+begin_src emacs-lisp :results latex
-\"Line 1
-Line 2
-Line 3\"
-#+end_src
-
-* next heading"))
-
-(ert-deftest test-ob/org-babel-remove-result--results-code ()
- "Test `org-babel-remove-result' with :results code."
-
- (test-ob-verify-result-and-removed-result
- "#+BEGIN_SRC emacs-lisp
-\"I am working!\"
-#+END_SRC"
-
-"* org-babel-remove-result
-#+begin_src emacs-lisp :results code
-(message \"I am working!\")
-#+end_src
-
-* next heading"))
-
(ert-deftest test-ob/org-babel-remove-result--results-pp ()
"Test `org-babel-remove-result' with :results pp."
(test-ob-verify-result-and-removed-result
@@ -1009,11 +929,11 @@ hello there
(ert-deftest test-ob/org-babel-remove-result--results-org ()
"Test `org-babel-remove-result' with :results org."
(test-ob-verify-result-and-removed-result
- "#+BEGIN_ORG
+ "#+BEGIN_SRC org
* heading
** subheading
content
-#+END_ORG"
+#+END_SRC"
"* org-babel-remove-result
#+begin_src emacs-lisp :results org