MCPcopy Create free account
hub / github.com/StackStorm/st2 / test_lt_fail

Method test_lt_fail

st2common/tests/unit/test_operators.py:1110–1115  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected