(t *testing.T)
| 557 | } |
| 558 | |
| 559 | func TestRealWorld_ActivationCheck(t *testing.T) { |
| 560 | // needs.activation.outputs.activated == 'true' — simple leaf, no change. |
| 561 | node := cmp(prop("needs.activation.outputs.activated"), "==", str("true")) |
| 562 | assertRender(t, "needs.activation.outputs.activated == 'true'", node) |
| 563 | } |
| 564 | |
| 565 | func TestRealWorld_ComplexSafeOutputCondition(t *testing.T) { |
| 566 | // ((!cancelled()) && (needs.agent.result != 'skipped')) && contains(needs.agent.outputs.output_types, 'push') |
nothing calls this directly
no test coverage detected