MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_win32_ver_on_non_windows

Method test_win32_ver_on_non_windows

Lib/test/test_platform.py:386–389  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

384
385 @unittest.skipIf(support.MS_WINDOWS, 'This test only makes sense on non Windows')
386 def test_win32_ver_on_non_windows(self):
387 release, version, csd, ptype = 'a', '1.0', 'c', 'd'
388 res = platform.win32_ver(release, version, csd, ptype)
389 self.assertSequenceEqual(res, (release, version, csd, ptype), seq_type=tuple)
390
391 def test_mac_ver(self):
392 res = platform.mac_ver()

Callers

nothing calls this directly

Calls 1

assertSequenceEqualMethod · 0.80

Tested by

no test coverage detected