(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestAbsoluteEmptyPathStringPanic(t *testing.T) { |
| 24 | t.Parallel() |
| 25 | |
| 26 | absolutePath := safepaths.Absolute{} |
| 27 | require.Panics(t, func() { |
| 28 | _ = absolutePath.String() |
| 29 | }) |
| 30 | } |
| 31 | |
| 32 | func TestJoin(t *testing.T) { |
| 33 | t.Parallel() |