Lines Matching refs:expected
220 def _read_and_compare(self, compare, expected): argument
226 with open(os.path.join(self._test_dir, expected)) as f:
230 def _contains(self, attr, expected): argument
233 expected)
235 def _matches(self, attr, expected): argument
237 expected)
239 def config_contains(self, expected): argument
245 return self._contains('config', expected)
247 def config_matches(self, expected): argument
253 return self._matches('config', expected)
255 def stdout_contains(self, expected): argument
261 return self._contains('stdout', expected)
263 def stdout_matches(self, expected): argument
269 return self._matches('stdout', expected)
271 def stderr_contains(self, expected): argument
277 return self._contains('stderr', expected)
279 def stderr_matches(self, expected): argument
285 return self._matches('stderr', expected)