(self)
| 286 | self.assertIn('No closing', dialog.entry_error['text']) |
| 287 | |
| 288 | def test_good_args(self): |
| 289 | args = ['-n', '10', '--verbose', '-p', '/path', '--name'] |
| 290 | dialog = self.Dummy_CustomRun(' '.join(args) + ' "my name"') |
| 291 | self.assertEqual(dialog.cli_args_ok(), args + ["my name"]) |
| 292 | self.assertEqual(dialog.entry_error['text'], '') |
| 293 | |
| 294 | |
| 295 | class CustomRunEntryokTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected