(t *testing.T)
| 102 | } |
| 103 | |
| 104 | func TestIndex_RemoveNonexistent(t *testing.T) { |
| 105 | t.Parallel() |
| 106 | idx := filefinder.NewIndex() |
| 107 | if idx.Remove("nonexistent.go") { |
| 108 | t.Fatal("expected Remove to return false for missing path") |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | func TestIndex_PathNormalization(t *testing.T) { |
| 113 | t.Parallel() |