--------------------------------------------------------------------------- readSourceRepoFromFile ---------------------------------------------------------------------------
(t *testing.T)
| 1546 | // --------------------------------------------------------------------------- |
| 1547 | |
| 1548 | func TestSourceRepoLabel_NonEmpty(t *testing.T) { |
| 1549 | assert.Equal(t, "github/gh-aw", sourceRepoLabel("github/gh-aw"), "non-empty repo should pass through") |
| 1550 | } |
| 1551 | |
| 1552 | func TestSourceRepoLabel_Empty(t *testing.T) { |
| 1553 | assert.Equal(t, "(no source field)", sourceRepoLabel(""), "empty repo should return placeholder label") |
nothing calls this directly
no test coverage detected