D | ksft.py | 52 def ksft_eq(a, b, comment=""): argument 55 _fail("Check failed", a, "!=", b, comment) 58 def ksft_ne(a, b, comment=""): argument 61 _fail("Check failed", a, "==", b, comment) 64 def ksft_true(a, comment=""): argument 66 _fail("Check failed", a, "does not eval to True", comment) 69 def ksft_in(a, b, comment=""): argument 71 _fail("Check failed", a, "not in", b, comment) 74 def ksft_ge(a, b, comment=""): argument 76 _fail("Check failed", a, "<", b, comment) [all …]
|