2010-10-14 14:10:23 +00:00
|
|
|
;;; test-ob-sh.el
|
|
|
|
|
2012-03-19 20:38:12 +00:00
|
|
|
;; Copyright (c) 2010-2012 Eric Schulte
|
2010-10-14 14:10:23 +00:00
|
|
|
;; Authors: Eric Schulte
|
|
|
|
|
|
|
|
;; Released under the GNU General Public License version 3
|
|
|
|
;; see: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
|
|
|
;; Template test file for Org-mode tests
|
|
|
|
|
|
|
|
;;; Code:
|
2012-08-03 19:34:04 +00:00
|
|
|
(org-test-for-executable "sh")
|
2012-03-19 20:38:12 +00:00
|
|
|
(unless (featurep 'ob-sh)
|
|
|
|
(signal 'missing-test-dependency "Support for Sh code blocks"))
|
|
|
|
|
2010-10-14 14:10:23 +00:00
|
|
|
(ert-deftest test-ob-sh/dont-insert-spaces-on-expanded-bodies ()
|
|
|
|
"Expanded shell bodies should not start with a blank line
|
|
|
|
unless the body of the tangled block does."
|
|
|
|
(should-not (string-match "^[\n\r][\t ]*[\n\r]"
|
2010-10-20 20:36:20 +00:00
|
|
|
(org-babel-expand-body:generic "echo 2" '())))
|
2010-10-14 14:10:23 +00:00
|
|
|
(should (string-match "^[\n\r][\t ]*[\n\r]"
|
2010-10-20 20:36:20 +00:00
|
|
|
(org-babel-expand-body:generic "\n\necho 2" '()))))
|
2010-10-14 14:10:23 +00:00
|
|
|
|
2010-10-15 15:25:33 +00:00
|
|
|
(ert-deftest test-ob-sh/dont-error-on-empty-results ()
|
|
|
|
"Was throwing an elisp error when shell blocks threw errors and
|
|
|
|
returned empty results."
|
|
|
|
(should (null (org-babel-execute:sh "ls NoSuchFileOrDirectory.txt" nil))))
|
|
|
|
|
2012-07-31 14:18:50 +00:00
|
|
|
(ert-deftest test-ob-sh/session ()
|
|
|
|
"This also tests `org-babel-comint-with-output' in
|
|
|
|
ob-comint.el, which was not previously tested."
|
|
|
|
(let ((res (org-babel-execute:sh "echo 1; echo 2" '((:session . "yes")))))
|
|
|
|
(should res)
|
|
|
|
(should (listp res))))
|
|
|
|
|
2010-10-14 14:10:23 +00:00
|
|
|
(provide 'test-ob-sh)
|
|
|
|
|
|
|
|
;;; test-ob-sh.el ends here
|