summaryrefslogtreecommitdiff
path: root/test/engine/test_pool.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-01-14 17:42:44 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-01-14 17:45:59 -0500
commite058d25cf01c3163e5ff39e4ccaff1928f332a27 (patch)
tree29acd28183ff0675c9c51c68abff3055c1466c8d /test/engine/test_pool.py
parent07cd49daaadd0a0568444eaeccaa79f79cd15ffc (diff)
downloadsqlalchemy-e058d25cf01c3163e5ff39e4ccaff1928f332a27.tar.gz
remove dbapi_proxy module
This module was not documented nor part of any test suite, and it's unlikely it was working correctly. It's not likely that this module was ever used after the first year or so of SQLAlchemy, and it's stayed around because it is so obscure that I never remembered to remove it. Change-Id: I0ed9030438982e935add87c51abbfff50e7382be References: #7257
Diffstat (limited to 'test/engine/test_pool.py')
-rw-r--r--test/engine/test_pool.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py
index c2ac6637f..324b971b6 100644
--- a/test/engine/test_pool.py
+++ b/test/engine/test_pool.py
@@ -68,7 +68,6 @@ def MockDBAPI(): # noqa
class PoolTestBase(fixtures.TestBase):
def setup_test(self):
- pool.clear_managers()
self._teardown_conns = []
def teardown_test(self):
@@ -77,10 +76,6 @@ class PoolTestBase(fixtures.TestBase):
if conn:
conn.close()
- @classmethod
- def teardown_test_class(cls):
- pool.clear_managers()
-
def _with_teardown(self, connection):
self._teardown_conns.append(weakref.ref(connection))
return connection