(t *testing.T)
| 124 | } |
| 125 | |
| 126 | func TestPathCleanLong(t *testing.T) { |
| 127 | cleanTests := genLongPaths() |
| 128 | |
| 129 | for _, test := range cleanTests { |
| 130 | assert.Equal(t, test.result, cleanPath(test.path)) |
| 131 | assert.Equal(t, test.result, cleanPath(test.result)) |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | func BenchmarkPathCleanLong(b *testing.B) { |
| 136 | cleanTests := genLongPaths() |
nothing calls this directly
no test coverage detected