(t *testing.T, cfg *config.Config, keys []string)
| 225 | } |
| 226 | |
| 227 | func requireKeyExists(t *testing.T, cfg *config.Config, keys []string) { |
| 228 | t.Helper() |
| 229 | |
| 230 | _, err := cfg.Get(keys) |
| 231 | require.NoError(t, err) |
| 232 | } |
| 233 | |
| 234 | func requireKeyWithValue(t *testing.T, cfg *config.Config, keys []string, value string) { |
| 235 | t.Helper() |
no test coverage detected