MCPcopy Index your code
hub / github.com/cli/cli / TestTokenForUserNotFoundErrors

Function TestTokenForUserNotFoundErrors

internal/config/auth_config_test.go:658–667  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

656}
657
658func TestTokenForUserNotFoundErrors(t *testing.T) {
659 // Given a user has not logged in
660 authCfg := newTestAuthConfig(t)
661
662 // When we get the token
663 _, _, err := authCfg.TokenForUser("github.com", "test-user-1")
664
665 // Then it returns an error
666 require.EqualError(t, err, "no token found for 'test-user-1'")
667}
668
669func requireKeyWithValue(t *testing.T, cfg *ghConfig.Config, keys []string, value string) {
670 t.Helper()

Callers

nothing calls this directly

Calls 2

newTestAuthConfigFunction · 0.85
TokenForUserMethod · 0.65

Tested by

no test coverage detected