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