(t *testing.T)
| 213 | } |
| 214 | |
| 215 | func TestRemoveWorkflows(t *testing.T) { |
| 216 | err := RemoveWorkflows("test-pattern", false, "") |
| 217 | |
| 218 | // Should not error since it's a stub implementation |
| 219 | if err != nil { |
| 220 | t.Errorf("RemoveWorkflows should not return error for valid input, got: %v", err) |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | func TestStatusWorkflows(t *testing.T) { |
| 225 | err := StatusWorkflows("test-pattern", false, false, "", "", "") |
nothing calls this directly
no test coverage detected