(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestBootstrapInvocationContext_MissingProfileValue(t *testing.T) { |
| 39 | if _, err := BootstrapInvocationContext([]string{"auth", "status", "--profile"}); err == nil { |
| 40 | t.Fatal("BootstrapInvocationContext() error = nil, want non-nil") |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func TestBootstrapInvocationContext_HelpFlag(t *testing.T) { |
| 45 | inv, err := BootstrapInvocationContext([]string{"--help"}) |
nothing calls this directly
no test coverage detected