(self)
| 71 | |
| 72 | @support.cpython_only |
| 73 | def test_help_xoptions(self): |
| 74 | out = self.verify_valid_flag('--help-xoptions') |
| 75 | self.assertIn(b'-X dev', out) |
| 76 | options = re.findall(rb'^-X (\w+)', out, re.MULTILINE) |
| 77 | self.assertEqual(options, sorted(options), |
| 78 | "options should be sorted alphabetically") |
| 79 | |
| 80 | @support.cpython_only |
| 81 | def test_help_all(self): |
nothing calls this directly
no test coverage detected