コード例 #1
0
ファイル: test_special.py プロジェクト: xx312022850/pypy
 def test__isfake_currently_true(self):
     from __pypy__ import isfake
     import select
     assert isfake(select)
コード例 #2
0
ファイル: test_special.py プロジェクト: TheDunn/flex-pypy
 def test__isfake(self):
     from __pypy__ import isfake
     assert not isfake(map)
     assert not isfake(object)
     assert not isfake(isfake)
コード例 #3
0
ファイル: test_special.py プロジェクト: xx312022850/pypy
 def test__isfake(self):
     from __pypy__ import isfake
     assert not isfake(map)
     assert not isfake(object)
     assert not isfake(isfake)
コード例 #4
0
ファイル: test_special.py プロジェクト: TheDunn/flex-pypy
 def test__isfake_currently_true(self):
     from __pypy__ import isfake
     import select
     assert isfake(select)