(t *testing.T)
| 334 | } |
| 335 | |
| 336 | func TestEnvMap(t *testing.T) { |
| 337 | m := map[string]string{} |
| 338 | m["foo"] = "bar" |
| 339 | l := utils.GetAsStringList(m) |
| 340 | assert.Equal(t, l[0], "foo=bar") |
| 341 | m = utils.GetAsEqualsMap(l) |
| 342 | assert.Equal(t, m["foo"], "bar") |
| 343 | } |
| 344 | |
| 345 | func TestEnvVariablePrecedence(t *testing.T) { |
| 346 | testcases := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…