(self)
| 322 | self.assertEqual(sys.version.partition(" ")[0], data["version"]) |
| 323 | |
| 324 | def test_help_option(self): |
| 325 | data = self.run_py(["-h"]) |
| 326 | self.assertEqual("True", data["SearchInfo.help"]) |
| 327 | |
| 328 | def test_list_option(self): |
| 329 | for opt, v1, v2 in [ |
nothing calls this directly
no test coverage detected