(self)
| 1745 | assert 'PyPy' in pyimplementation() |
| 1746 | |
| 1747 | def test_platform_fallback(self): |
| 1748 | with conftest.platform_pyimp(): |
| 1749 | with conftest.sys_platform('darwin'): |
| 1750 | with conftest.pypy_version(): |
| 1751 | assert 'CPython' == pyimplementation() |
| 1752 | |
| 1753 | |
| 1754 | class test_shared_task: |
nothing calls this directly
no test coverage detected