(t *testing.T)
| 70 | } |
| 71 | |
| 72 | func TestPathClean(t *testing.T) { |
| 73 | for _, test := range cleanTests { |
| 74 | assert.Equal(t, test.result, cleanPath(test.path)) |
| 75 | assert.Equal(t, test.result, cleanPath(test.result)) |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func TestPathCleanMallocs(t *testing.T) { |
| 80 | if testing.Short() { |
nothing calls this directly
no test coverage detected