summaryrefslogtreecommitdiff
path: root/tests/test.py
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2017-06-22 14:54:19 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2017-06-22 14:54:19 +0200
commitdf0fd496fbc7dfcf468f72881e81ef6424fe39fd (patch)
tree24fb915bb70e01ddf7146eb83f5910538e80c1df /tests/test.py
parentf12586c0fa5c8a877b4a6538d9ebb0c0a1a33745 (diff)
parentf472f1a6382abc698f74a1afbb07b2274b3a3d45 (diff)
merge master
Diffstat (limited to 'tests/test.py')
-rw-r--r--tests/test.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test.py b/tests/test.py
new file mode 100644
index 0000000..559946a
--- /dev/null
+++ b/tests/test.py
@@ -0,0 +1,8 @@
+from pysqlcipher import dbapi2 as sqlite
+conn = sqlite.connect('test.db')
+c = conn.cursor()
+c.execute("PRAGMA key='testaverylongpasswordisthisokey'")
+c.execute("create table stocks (date text, trans text, symbol text, qty real, price real)")
+c.execute("""insert into stocks values ('2006-01-05','BUY','RHAT',100,35.14)""")
+conn.commit()
+c.close()