(t *testing.T)
| 25 | } |
| 26 | |
| 27 | func TestCreateTestConfigFile_EmptyContent(t *testing.T) { |
| 28 | dir := t.TempDir() |
| 29 | path := CreateTestConfigFile(t, dir, "") |
| 30 | assert.FileExists(t, path) |
| 31 | } |
| 32 | |
| 33 | func TestCreateTestKnownHosts(t *testing.T) { |
| 34 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected