예제 #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)