Skip to content

Commit

Permalink
Add test for #17
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushalmodi committed May 19, 2020
1 parent 305a7ff commit b06bcc8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/include/file1.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(message "1")

(message "2")

(message "3")
8 changes: 8 additions & 0 deletions tests/include/file1.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#+property: header-args :tangle yes

#+begin_src emacs-lisp -n
(message "1")
#+end_src

#+include: "./file2.org"
#+include: "file3.org"
3 changes: 3 additions & 0 deletions tests/include/file2.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#+begin_src emacs-lisp -n :tangle msg2.el
(message "2")
#+end_src
5 changes: 5 additions & 0 deletions tests/include/file3.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#+property: header-args :tangle yes

#+begin_src emacs-lisp -n
(message "3")
#+end_src

0 comments on commit b06bcc8

Please sign in to comment.