(t *testing.T)
| 1574 | } |
| 1575 | |
| 1576 | func TestReadSourceRepoFromFile_MissingFile(t *testing.T) { |
| 1577 | assert.Empty(t, readSourceRepoFromFile("/nonexistent/file.md"), "should return empty string for missing file") |
| 1578 | } |
| 1579 | |
| 1580 | func TestReadSourceRepoFromFile_ShortSource(t *testing.T) { |
| 1581 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected