(self)
| 110 | self.assertTrue(ns.wait) |
| 111 | |
| 112 | def test_start(self): |
| 113 | for opt in '-S', '--start': |
| 114 | with self.subTest(opt=opt): |
| 115 | ns = self.parse_args([opt, 'foo']) |
| 116 | self.assertEqual(ns.start, 'foo') |
| 117 | self.checkError([opt], 'expected one argument') |
| 118 | |
| 119 | def test_verbose(self): |
| 120 | ns = self.parse_args(['-v']) |
nothing calls this directly
no test coverage detected