(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestParseAuthInfo_InvalidToken(t *testing.T) { |
| 61 | t.Parallel() |
| 62 | |
| 63 | _, err := parseAuthInfo("not-a-jwt") |
| 64 | require.Error(t, err) |
| 65 | } |
| 66 | |
| 67 | func TestPrintAuthInfoText(t *testing.T) { |
| 68 | t.Parallel() |
nothing calls this directly
no test coverage detected