(self)
| 216 | 'invalid'])) |
| 217 | |
| 218 | def test_pg_missing_args_output(self): |
| 219 | ret, _, stderr = self._capture_output(['pg'], stderr=True) |
| 220 | self.assertEqual({}, ret) |
| 221 | self.assertRegex(stderr, re.compile('no valid command found.* closest matches')) |
| 222 | |
| 223 | def test_pg_wrong_arg_output(self): |
| 224 | ret, _, stderr = self._capture_output(['pg', 'map', 'bad-pgid'], |
nothing calls this directly
no test coverage detected