|
@@ -49,9 +49,26 @@
|
|
|
"Don't add IDs to headings without tangling code blocks."
|
|
|
(org-test-at-id "ef06fd7f-012b-4fde-87a2-2ae91504ea7e"
|
|
|
(org-babel-next-src-block)
|
|
|
+ (org-narrow-to-subtree)
|
|
|
(org-babel-tangle)
|
|
|
(should (null (org-id-get)))))
|
|
|
|
|
|
+(ert-deftest ob-tangle/continued-code-blocks-w-noweb-ref ()
|
|
|
+ "Test that the :noweb-ref header argument is used correctly."
|
|
|
+ (org-test-at-id "54d68d4b-1544-4745-85ab-4f03b3cbd8a0"
|
|
|
+ (let ((tangled "df \\
|
|
|
+|sed '1d' \\
|
|
|
+|awk '{print $5 \" \" $6}'|sort -n |tail -1 \\
|
|
|
+|awk '{print $2}'
|
|
|
+"))
|
|
|
+ (org-narrow-to-subtree)
|
|
|
+ (org-babel-tangle)
|
|
|
+ (with-temp-buffer
|
|
|
+ (insert-file-contents "babel.sh")
|
|
|
+ (goto-char (point-min))
|
|
|
+ (should (re-search-forward (regexp-quote tangled) nil t)))
|
|
|
+ (delete-file "babel.sh"))))
|
|
|
+
|
|
|
(provide 'test-ob-tangle)
|
|
|
|
|
|
;;; test-ob-tangle.el ends here
|