(self)
| 1732 | assert pyimplementation() == 'Xython' |
| 1733 | |
| 1734 | def test_platform_jython(self): |
| 1735 | with conftest.platform_pyimp(): |
| 1736 | with conftest.sys_platform('java 1.6.51'): |
| 1737 | assert 'Jython' in pyimplementation() |
| 1738 | |
| 1739 | def test_platform_pypy(self): |
| 1740 | with conftest.platform_pyimp(): |
nothing calls this directly
no test coverage detected