def test_platform_pypy(self): with mock.platform_pyimp(): with mock.sys_platform('darwin'): with mock.pypy_version((1, 4, 3)): assert 'PyPy' in pyimplementation() with mock.pypy_version((1, 4, 3, 'a4')): assert 'PyPy' in pyimplementation()
def test_platform_fallback(self): with mock.platform_pyimp(): with mock.sys_platform('darwin'): with mock.pypy_version(): assert 'CPython' == pyimplementation()