include test case
authorStefan Behnel <scoder@users.berlios.de>
Tue, 22 Apr 2008 19:55:46 +0000 (21:55 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 22 Apr 2008 19:55:46 +0000 (21:55 +0200)
tests/run/include.pyx [new file with mode: 0644]
tests/run/testinclude.pxi [new file with mode: 0644]

diff --git a/tests/run/include.pyx b/tests/run/include.pyx
new file mode 100644 (file)
index 0000000..c350a74
--- /dev/null
@@ -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 (file)
index 0000000..9870e68
--- /dev/null
@@ -0,0 +1 @@
+D = 2