(self)
| 148 | self.assertEqual(ns.verbose, 0) |
| 149 | |
| 150 | def test_slowest(self): |
| 151 | for opt in '-o', '--slowest': |
| 152 | with self.subTest(opt=opt): |
| 153 | ns = self.parse_args([opt]) |
| 154 | self.assertTrue(ns.print_slow) |
| 155 | |
| 156 | def test_header(self): |
| 157 | ns = self.parse_args(['--header']) |
nothing calls this directly
no test coverage detected