예제 #1
0
파일: test_app.py 프로젝트: Scalr/celery
 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()
예제 #2
0
파일: test_app.py 프로젝트: tayfun/celery
 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()
예제 #3
0
파일: test_app.py 프로젝트: Scalr/celery
 def test_platform_fallback(self):
     with mock.platform_pyimp():
         with mock.sys_platform('darwin'):
             with mock.pypy_version():
                 assert 'CPython' == pyimplementation()
예제 #4
0
파일: test_app.py 프로젝트: Scalr/celery
 def test_platform_jython(self):
     with mock.platform_pyimp():
         with mock.sys_platform('java 1.6.51'):
             assert 'Jython' in pyimplementation()
예제 #5
0
파일: test_app.py 프로젝트: Scalr/celery
 def test_platform_python_implementation(self):
     with mock.platform_pyimp(lambda: 'Xython'):
         assert pyimplementation() == 'Xython'
예제 #6
0
파일: test_app.py 프로젝트: tayfun/celery
 def test_platform_fallback(self):
     with mock.platform_pyimp():
         with mock.sys_platform("darwin"):
             with mock.pypy_version():
                 assert "CPython" == pyimplementation()
예제 #7
0
파일: test_app.py 프로젝트: tayfun/celery
 def test_platform_jython(self):
     with mock.platform_pyimp():
         with mock.sys_platform("java 1.6.51"):
             assert "Jython" in pyimplementation()