(self)
| 199 | self.run_scenario(response, True) |
| 200 | |
| 201 | def test_replace_one(self): |
| 202 | response = self.BASE_SRV_RESPONSE[:] |
| 203 | response.remove(("localhost.test.build.10gen.cc", 27018)) |
| 204 | response.append(("localhost.test.build.10gen.cc", 27019)) |
| 205 | self.run_scenario(response, True) |
| 206 | |
| 207 | def test_replace_both_with_one(self): |
| 208 | response = [("localhost.test.build.10gen.cc", 27019)] |
nothing calls this directly
no test coverage detected