(self)
| 1737 | assert 'Jython' in pyimplementation() |
| 1738 | |
| 1739 | def test_platform_pypy(self): |
| 1740 | with conftest.platform_pyimp(): |
| 1741 | with conftest.sys_platform('darwin'): |
| 1742 | with conftest.pypy_version((1, 4, 3)): |
| 1743 | assert 'PyPy' in pyimplementation() |
| 1744 | with conftest.pypy_version((1, 4, 3, 'a4')): |
| 1745 | assert 'PyPy' in pyimplementation() |
| 1746 | |
| 1747 | def test_platform_fallback(self): |
| 1748 | with conftest.platform_pyimp(): |
nothing calls this directly
no test coverage detected