(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestNewRejectAuthStaticIsInvalid(t *testing.T) { |
| 34 | if _, err := NewRejectAuth("static://?code=403", nil); err == nil { |
| 35 | t.Fatalf("NewRejectAuth accepted static scheme") |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected