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