(self)
| 259 | |
| 260 | class ExecutionProfileTest(unittest.TestCase): |
| 261 | def setUp(self): |
| 262 | if connection_class is None: |
| 263 | raise unittest.SkipTest('libev does not appear to be installed correctly') |
| 264 | connection_class.initialize_reactor() |
| 265 | |
| 266 | def _verify_response_future_profile(self, rf, prof): |
| 267 | self.assertEqual(rf._load_balancer, prof.load_balancing_policy) |
nothing calls this directly
no test coverage detected