Skip to content

Commit 6b0ea7f

Browse files
committed
Add test for begin_src blocks with header args but only switches
Ref: #15
1 parent 51e0144 commit 6b0ea7f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tests/begin_src/begin_src.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(message "this will be tangled")

tests/begin_src/begin_src.org

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#+property: header-args :tangle yes
2+
3+
#+begin_src emacs-lisp -n
4+
(message "this will be tangled")
5+
#+end_src
6+
7+
#+begin_src emacs-lisp -n :tangle no
8+
(message "this will not be tangled")
9+
#+end_src

0 commit comments

Comments
 (0)