(self)
| 317 | |
| 318 | |
| 319 | def test_version(self): |
| 320 | data = self.run_py(["-0"]) |
| 321 | self.assertEqual(self.py_exe, Path(data["argv0"])) |
| 322 | self.assertEqual(sys.version.partition(" ")[0], data["version"]) |
| 323 | |
| 324 | def test_help_option(self): |
| 325 | data = self.run_py(["-h"]) |
nothing calls this directly
no test coverage detected