(t *testing.T, repl *caddy.Replacer, key string)
| 180 | } |
| 181 | |
| 182 | func assertPlaceholderAbsent(t *testing.T, repl *caddy.Replacer, key string) { |
| 183 | t.Helper() |
| 184 | if actual, ok := repl.GetString(key); ok { |
| 185 | t.Fatalf("expected placeholder %q to be absent, got %q", key, actual) |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | type staticAuthenticator struct { |
| 190 | user User |
no test coverage detected