(self)
| 1153 | assert w.timer.max_interval |
| 1154 | |
| 1155 | def test_Pool_create_threaded(self): |
| 1156 | w = Mock() |
| 1157 | w._conninfo.connection_errors = w._conninfo.channel_errors = () |
| 1158 | w.pool_cls = Mock() |
| 1159 | w.use_eventloop = False |
| 1160 | pool = components.Pool(w) |
| 1161 | pool.create(w) |
| 1162 | |
| 1163 | def test_Pool_pool_no_sem(self): |
| 1164 | w = Mock() |