(t *testing.T)
| 152 | } |
| 153 | |
| 154 | func TestCreateOrchestratorEmpty(t *testing.T) { |
| 155 | cli := makeFakeCli(t) |
| 156 | |
| 157 | err := runCreate(cli, "test", createOptions{ |
| 158 | endpoint: map[string]string{}, |
| 159 | }) |
| 160 | assert.NilError(t, err) |
| 161 | assertContextCreateLogging(t, cli, "test") |
| 162 | } |
| 163 | |
| 164 | func TestCreateFromContext(t *testing.T) { |
| 165 | cases := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…