From 7e9a45171b97766ced0849a042e4ba9411be6ebd Mon Sep 17 00:00:00 2001
From: Stefan Behnel <scoder@users.berlios.de>
Date: Sun, 14 Dec 2008 15:19:00 +0100
Subject: [PATCH] extended test case to make sure we didn't break some things

---
 tests/run/consts.pyx | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/run/consts.pyx b/tests/run/consts.pyx
index 11b91a606..6e1fe8dfa 100644
--- a/tests/run/consts.pyx
+++ b/tests/run/consts.pyx
@@ -7,6 +7,8 @@ True
 True
 >>> arithm() == 9*2+3*8/6-10
 True
+>>> lists() == [1,2,3] + [4,5,6]
+True
 """
 
 def add():
@@ -20,3 +22,6 @@ def mul():
 
 def arithm():
     return 9*2+3*8/6-10
+
+def lists():
+    return [1,2,3] + [4,5,6]
-- 
2.30.9