(self)
| 904 | self.assertTrue(op("1", "1"), "Failed equals.") |
| 905 | |
| 906 | def test_equals_fail(self): |
| 907 | op = operators.get_operator("equals") |
| 908 | self.assertFalse(op("1", "2"), "Passed equals.") |
| 909 | self.assertFalse(op("1", None), "Passed equals with None as criteria_pattern.") |
| 910 | |
| 911 | def test_nequals(self): |
| 912 | op = operators.get_operator("nequals") |
nothing calls this directly
no outgoing calls
no test coverage detected