(t *testing.T, cfg *ghConfig.Config, keys []string, value string)
| 667 | } |
| 668 | |
| 669 | func requireKeyWithValue(t *testing.T, cfg *ghConfig.Config, keys []string, value string) { |
| 670 | t.Helper() |
| 671 | |
| 672 | actual, err := cfg.Get(keys) |
| 673 | require.NoError(t, err) |
| 674 | |
| 675 | require.Equal(t, value, actual) |
| 676 | } |
| 677 | |
| 678 | func requireNoKey(t *testing.T, cfg *ghConfig.Config, keys []string) { |
| 679 | t.Helper() |
no test coverage detected