(t *testing.T)
| 131 | } |
| 132 | |
| 133 | func TestDecodedTokens(t *testing.T) { |
| 134 | t.Parallel() |
| 135 | |
| 136 | p, err := New("/obj/a~1b") |
| 137 | require.NoError(t, err) |
| 138 | assert.Equal(t, []string{"obj", "a/b"}, p.DecodedTokens()) |
| 139 | } |
| 140 | |
| 141 | func TestIsEmpty(t *testing.T) { |
| 142 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…