(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestStaticAuthPasswordFail(t *testing.T) { |
| 45 | t.Parallel() |
| 46 | |
| 47 | ok := authStatic("user", "passWRONG", guiCfg) |
| 48 | if ok { |
| 49 | t.Fatalf("should fail auth") |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func TestFormatOptionalPercentS(t *testing.T) { |
| 54 | t.Parallel() |
nothing calls this directly
no test coverage detected