(t *testing.T, cfg *ghConfig.Config, keys []string)
| 676 | } |
| 677 | |
| 678 | func requireNoKey(t *testing.T, cfg *ghConfig.Config, keys []string) { |
| 679 | t.Helper() |
| 680 | |
| 681 | _, err := cfg.Get(keys) |
| 682 | var keyNotFoundError *ghConfig.KeyNotFoundError |
| 683 | require.ErrorAs(t, err, &keyNotFoundError) |
| 684 | } |
| 685 | |
| 686 | // Post migration tests |
| 687 |
no test coverage detected