(t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func TestConfigWithEmptyComposeFile(t *testing.T) { |
| 14 | cmd := newConfigCommand(test.NewFakeCli(&fakeClient{})) |
| 15 | cmd.SetOut(io.Discard) |
| 16 | cmd.SetErr(io.Discard) |
| 17 | |
| 18 | assert.ErrorContains(t, cmd.Execute(), `specify a Compose file`) |
| 19 | } |
| 20 | |
| 21 | func TestConfigMergeInterpolation(t *testing.T) { |
| 22 | tests := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…