12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- (org-test-for-executable "sh")
- (unless (featurep 'ob-sh)
- (signal 'missing-test-dependency "Support for Sh code blocks"))
- (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]"
- (org-babel-expand-body:generic "echo 2" '())))
- (should (string-match "^[\n\r][\t ]*[\n\r]"
- (org-babel-expand-body:generic "\n\necho 2" '()))))
- (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))))
- (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))))
- (provide 'test-ob-sh)
|