(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestSetTopLevelKey(t *testing.T) { |
| 146 | c := newTestConfig() |
| 147 | host := "" |
| 148 | key := "top-level-key" |
| 149 | val := "top-level-value" |
| 150 | c.Set(host, key, val) |
| 151 | requireKeyWithValue(t, c.cfg, []string{key}, val) |
| 152 | } |
| 153 | |
| 154 | func TestSetHostSpecificKey(t *testing.T) { |
| 155 | c := newTestConfig() |
nothing calls this directly
no test coverage detected