summaryrefslogtreecommitdiff
path: root/tests/test_async.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_async.py')
-rwxr-xr-xtests/test_async.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_async.py b/tests/test_async.py
index be4a1d8..8c25177 100755
--- a/tests/test_async.py
+++ b/tests/test_async.py
@@ -410,6 +410,18 @@ class AsyncTests(unittest.TestCase):
self.assertEqual("CREATE TABLE", cur.statusmessage)
self.assert_(self.conn.notices)
+ def test_async_cursor_gone(self):
+ cur = self.conn.cursor()
+ cur.execute("select 42;");
+ del cur
+ self.assertRaises(psycopg2.InterfaceError, self.wait, self.conn)
+
+ # The connection is still usable
+ cur = self.conn.cursor()
+ cur.execute("select 42;");
+ self.wait(self.conn)
+ self.assertEqual(cur.fetchone(), (42,))
+
def test_suite():
return unittest.TestLoader().loadTestsFromName(__name__)