Add a test showing we are not handling exports flags properly.

This commit is contained in:
Tom Alexander
2023-10-04 17:20:46 -04:00
parent a548c7e170
commit 1ab7d2f2d7
7 changed files with 22 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
#+begin_example python :exports results
print("foo")
#+end_example
#+begin_example python -n :exports results
print("foo")
#+end_example

View File

@@ -0,0 +1,7 @@
#+begin_src python :exports results
print("foo")
#+end_src
#+begin_src python -n :exports results
print("foo")
#+end_src