From b87450e26c32922513da8188ca86bd399d2230bb Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 22 Apr 2008 21:55:46 +0200 Subject: [PATCH] include test case --- tests/run/include.pyx | 8 ++++++++ tests/run/testinclude.pxi | 1 + 2 files changed, 9 insertions(+) create mode 100644 tests/run/include.pyx create mode 100644 tests/run/testinclude.pxi diff --git a/tests/run/include.pyx b/tests/run/include.pyx new file mode 100644 index 00000000..c350a74b --- /dev/null +++ b/tests/run/include.pyx @@ -0,0 +1,8 @@ +__doc__ = """ + >>> D + 2 +""" + +D = 1 + +include "testinclude.pxi" diff --git a/tests/run/testinclude.pxi b/tests/run/testinclude.pxi new file mode 100644 index 00000000..9870e682 --- /dev/null +++ b/tests/run/testinclude.pxi @@ -0,0 +1 @@ +D = 2 -- 2.26.2