コード例 #1
0
 def test_tscmp_eq(self):
     assert pypy_tscmp('asd', 'asd', 3, 3)
コード例 #2
0
 def test_tscmp_nlen(self):
     assert not pypy_tscmp('asd', 'asd', 2, 3)
コード例 #3
0
 def test_tscmp_neq(self):
     assert not pypy_tscmp('asd', 'qwe', 3, 3)
コード例 #4
0
 def test_tscmp_len(self):
     assert pypy_tscmp('asdp', 'asdq', 3, 3)
コード例 #5
0
ファイル: test_tscmp.py プロジェクト: Qointum/pypy
 def test_tscmp_eq(self):
     assert pypy_tscmp("asd", "asd", 3, 3)
コード例 #6
0
ファイル: test_tscmp.py プロジェクト: Qointum/pypy
 def test_tscmp_neq(self):
     assert not pypy_tscmp("asd", "qwe", 3, 3)
コード例 #7
0
ファイル: test_tscmp.py プロジェクト: Qointum/pypy
 def test_tscmp_nlen(self):
     assert not pypy_tscmp("asd", "asd", 2, 3)
コード例 #8
0
ファイル: test_tscmp.py プロジェクト: Qointum/pypy
 def test_tscmp_len(self):
     assert pypy_tscmp("asdp", "asdq", 3, 3)