(t *testing.T)
| 264 | } |
| 265 | |
| 266 | func TestRetainWithConfig(t *testing.T) { |
| 267 | for _, enc := range encoding.AllEncodingsForWrites() { |
| 268 | t.Run(enc.Version(), func(t *testing.T) { |
| 269 | testRetainWithConfig(t, enc.Version()) |
| 270 | }) |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | func testRetainWithConfig(t *testing.T, targetBlockVersion string) { |
| 275 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected