(self)
| 1108 | self.assertTrue(op("a", "b"), "Failed lessthan.") |
| 1109 | |
| 1110 | def test_lt_fail(self): |
| 1111 | op = operators.get_operator("lessthan") |
| 1112 | self.assertFalse(op(1, 1), "Passed lessthan.") |
| 1113 | self.assertFalse( |
| 1114 | op("1", None), "Passed lessthan with None as criteria_pattern." |
| 1115 | ) |
| 1116 | |
| 1117 | def test_gt(self): |
| 1118 | op = operators.get_operator("greaterthan") |
nothing calls this directly
no outgoing calls
no test coverage detected