MCPcopy Index your code
hub / github.com/python/cpython / test_win32_ver_on_non_windows

Method test_win32_ver_on_non_windows

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

Source from the content-addressed store, hash-verified

426
427 @unittest.skipIf(support.MS_WINDOWS, 'This test only makes sense on non Windows')
428 def test_win32_ver_on_non_windows(self):
429 release, version, csd, ptype = 'a', '1.0', 'c', 'd'
430 res = platform.win32_ver(release, version, csd, ptype)
431 self.assertSequenceEqual(res, (release, version, csd, ptype), seq_type=tuple)
432
433 def test_mac_ver(self):
434 res = platform.mac_ver()

Callers

nothing calls this directly

Calls 1

assertSequenceEqualMethod · 0.80

Tested by

no test coverage detected