(t *testing.T)
| 153 | } |
| 154 | |
| 155 | func TestKeyPathForBlock(t *testing.T) { |
| 156 | b := uuid.New() |
| 157 | tid := tenantID |
| 158 | keypath := KeyPathForBlock(b, tid) |
| 159 | |
| 160 | assert.Equal(t, KeyPath([]string{tid, b.String()}), keypath) |
| 161 | } |
| 162 | |
| 163 | func TestMetaFileName(t *testing.T) { |
| 164 | // WithoutPrefix |
nothing calls this directly
no test coverage detected