(t *testing.T)
| 116 | } |
| 117 | |
| 118 | func TestProxyCache(t *testing.T) { |
| 119 | px, ds := NewProxiedDisk(t) |
| 120 | storagetest.Test(t, func(t *testing.T) blobserver.Storage { |
| 121 | return px |
| 122 | }) |
| 123 | px.origin = memory.NewCache(0) |
| 124 | storagetest.Test(t, func(t *testing.T) blobserver.Storage { |
| 125 | t.Cleanup(func() { cleanUp(ds) }) |
| 126 | return px |
| 127 | }) |
| 128 | } |
| 129 | |
| 130 | func TestConfig(t *testing.T) { |
| 131 | const maxBytes = 1 << 5 |
nothing calls this directly
no test coverage detected