(self)
| 224 | self.assertTrue(ns.exclude) |
| 225 | |
| 226 | def test_single(self): |
| 227 | for opt in '-s', '--single': |
| 228 | with self.subTest(opt=opt): |
| 229 | ns = self.parse_args([opt]) |
| 230 | self.assertTrue(ns.single) |
| 231 | self.checkError([opt, '-f', 'foo'], "don't go together") |
| 232 | |
| 233 | def test_match(self): |
| 234 | for opt in '-m', '--match': |
nothing calls this directly
no test coverage detected