(t *testing.T)
| 85 | } |
| 86 | |
| 87 | func TestSaveFileToDirs(t *testing.T) { |
| 88 | tmpHome := filepath.Join(t.TempDir(), ".docker") |
| 89 | config, err := Load(tmpHome) |
| 90 | assert.NilError(t, err) |
| 91 | |
| 92 | // Now save it and make sure it shows up in new form |
| 93 | saveConfigAndValidateNewFormat(t, config, tmpHome) |
| 94 | } |
| 95 | |
| 96 | func TestEmptyFile(t *testing.T) { |
| 97 | tmpHome := t.TempDir() |
nothing calls this directly
no test coverage detected
searching dependent graphs…