(self)
| 310 | |
| 311 | |
| 312 | def test_version(self): |
| 313 | data = self.run_py(["-0"]) |
| 314 | self.assertEqual(self.py_exe, Path(data["argv0"])) |
| 315 | self.assertEqual(sys.version.partition(" ")[0], data["version"]) |
| 316 | |
| 317 | def test_help_option(self): |
| 318 | data = self.run_py(["-h"]) |
nothing calls this directly
no test coverage detected