(self)
| 315 | self.assertEqual(sys.version.partition(" ")[0], data["version"]) |
| 316 | |
| 317 | def test_help_option(self): |
| 318 | data = self.run_py(["-h"]) |
| 319 | self.assertEqual("True", data["SearchInfo.help"]) |
| 320 | |
| 321 | def test_list_option(self): |
| 322 | for opt, v1, v2 in [ |
nothing calls this directly
no test coverage detected