(t *testing.T)
| 14 | ) |
| 15 | |
| 16 | func TestDeployWithEmptyName(t *testing.T) { |
| 17 | cmd := newDeployCommand(test.NewFakeCli(&fakeClient{})) |
| 18 | cmd.SetArgs([]string{"' '"}) |
| 19 | cmd.SetOut(io.Discard) |
| 20 | cmd.SetErr(io.Discard) |
| 21 | |
| 22 | assert.ErrorContains(t, cmd.Execute(), `invalid stack name: "' '"`) |
| 23 | } |
| 24 | |
| 25 | func TestPruneServices(t *testing.T) { |
| 26 | ctx := context.Background() |
nothing calls this directly
no test coverage detected
searching dependent graphs…