(self)
| 218 | |
| 219 | class ContextManager(object): |
| 220 | def match(self): |
| 221 | found = expected_pattern in self.watcher_process.stdout.getvalue() |
| 222 | if invert_match: |
| 223 | return not found |
| 224 | |
| 225 | return found |
| 226 | |
| 227 | def __enter__(self): |
| 228 | self.watcher_process = ceph_manager.run_ceph_w(watch_channel) |
no outgoing calls
no test coverage detected