summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-02-12 19:06:57 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-02-12 19:06:57 (GMT)
commitc7551a16c7211301c51d15084894e0fed49fe086 (patch)
treef80a9650df997320f38c10d01e367cc397087f55 /Lib/sqlite3/test
parent425b8e85a99ee0c21a6f805e123d90e35f9f6a9b (diff)
parent51d04d1ba8643d8a0c89d8307bf43697223f31e2 (diff)
downloadcpython-c7551a16c7211301c51d15084894e0fed49fe086.zip
cpython-c7551a16c7211301c51d15084894e0fed49fe086.tar.gz
cpython-c7551a16c7211301c51d15084894e0fed49fe086.tar.bz2
Merge branch '3.2'
Closes #9750
Diffstat (limited to 'Lib/sqlite3/test')
-rw-r--r--Lib/sqlite3/test/dump.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/sqlite3/test/dump.py b/Lib/sqlite3/test/dump.py
index f40876a..b200333 100644
--- a/Lib/sqlite3/test/dump.py
+++ b/Lib/sqlite3/test/dump.py
@@ -13,6 +13,14 @@ class DumpTests(unittest.TestCase):
def CheckTableDump(self):
expected_sqls = [
+ """CREATE TABLE "index"("index" blob);"""
+ ,
+ """INSERT INTO "index" VALUES(X'01');"""
+ ,
+ """CREATE TABLE "quoted""table"("quoted""field" text);"""
+ ,
+ """INSERT INTO "quoted""table" VALUES('quoted''value');"""
+ ,
"CREATE TABLE t1(id integer primary key, s1 text, " \
"t1_i1 integer not null, i2 integer, unique (s1), " \
"constraint t1_idx1 unique (i2));"