(s, prefix string)
| 459 | } |
| 460 | |
| 461 | func containsPrefix(s, prefix string) bool { |
| 462 | return len(s) >= len(prefix) && s[:len(prefix)] == prefix |
| 463 | } |
| 464 | |
| 465 | func TestStepDependencies(t *testing.T) { |
| 466 | plan := NewExecutionPlan("Test plan with dependencies") |