summaryrefslogtreecommitdiff
path: root/test/profiling/pool.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/profiling/pool.py')
-rw-r--r--test/profiling/pool.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/profiling/pool.py b/test/profiling/pool.py
deleted file mode 100644
index f3f69222c..000000000
--- a/test/profiling/pool.py
+++ /dev/null
@@ -1,43 +0,0 @@
-import testenv; testenv.configure_for_tests()
-from sqlalchemy import *
-from testlib import *
-from sqlalchemy.pool import QueuePool
-
-
-class QueuePoolTest(TestBase, AssertsExecutionResults):
- class Connection(object):
- def close(self):
- pass
-
- def setUp(self):
- global pool
- pool = QueuePool(creator=self.Connection,
- pool_size=3, max_overflow=-1,
- use_threadlocal=True)
-
-
- @profiling.function_call_count(54, {'2.4': 38})
- def test_first_connect(self):
- conn = pool.connect()
-
- def test_second_connect(self):
- conn = pool.connect()
- conn.close()
-
- @profiling.function_call_count(31, {'2.4': 21})
- def go():
- conn2 = pool.connect()
- return conn2
- c2 = go()
-
- def test_second_samethread_connect(self):
- conn = pool.connect()
-
- @profiling.function_call_count(5, {'2.4': 3})
- def go():
- return pool.connect()
- c2 = go()
-
-
-if __name__ == '__main__':
- testenv.main()