diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-30 12:18:33 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-30 12:18:33 -0400 |
commit | 0bf33068f43c75cdaac3bf25cf918847f07bf330 (patch) | |
tree | a820a78b5e45c754fdf1dbf8719fbb5d45c1bb57 /test/engine/test_pool.py | |
parent | d16f8130e962f465de739ebf8345040771af3ed6 (diff) | |
download | sqlalchemy-0bf33068f43c75cdaac3bf25cf918847f07bf330.tar.gz |
- ensure all tests are named test_*
Diffstat (limited to 'test/engine/test_pool.py')
-rw-r--r-- | test/engine/test_pool.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py index 7b56e15f5..0ad26e890 100644 --- a/test/engine/test_pool.py +++ b/test/engine/test_pool.py @@ -129,10 +129,10 @@ class PoolTest(PoolTestBase): p.dispose() p.recreate() - def testthreadlocal_del(self): + def test_threadlocal_del(self): self._do_testthreadlocal(useclose=False) - def testthreadlocal_close(self): + def test_threadlocal_close(self): self._do_testthreadlocal(useclose=True) def _do_testthreadlocal(self, useclose=False): @@ -794,12 +794,13 @@ class DeprecatedPoolListenerTest(PoolTestBase): c.close() assert counts == [1, 2, 2] + class QueuePoolTest(PoolTestBase): - def testqueuepool_del(self): + def test_queuepool_del(self): self._do_testqueuepool(useclose=False) - def testqueuepool_close(self): + def test_queuepool_close(self): self._do_testqueuepool(useclose=True) def _do_testqueuepool(self, useclose=False): |