(self)
| 426 | self._do_test(pool.AssertionPool, ["R", "CL", "R"]) |
| 427 | |
| 428 | def test_singleton_pool(self): |
| 429 | self._do_test(pool.SingletonThreadPool, ["R", "CL", "R"]) |
| 430 | |
| 431 | def test_null_pool(self): |
| 432 | self._do_test(pool.NullPool, ["R", "CL", "R", "CL"]) |