(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestMissingFile(t *testing.T) { |
| 44 | tmpHome := t.TempDir() |
| 45 | |
| 46 | config, err := Load(tmpHome) |
| 47 | assert.NilError(t, err) |
| 48 | |
| 49 | // Now save it and make sure it shows up in new form |
| 50 | saveConfigAndValidateNewFormat(t, config, tmpHome) |
| 51 | } |
| 52 | |
| 53 | // TestLoadDanglingSymlink verifies that we gracefully handle dangling symlinks. |
| 54 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…