14 lines
247 B
Go
14 lines
247 B
Go
|
package testutil
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/moby/buildkit/solver"
|
||
|
)
|
||
|
|
||
|
func TestMemoryCacheStorage(t *testing.T) {
|
||
|
RunCacheStorageTests(t, func() (solver.CacheKeyStorage, func()) {
|
||
|
return solver.NewInMemoryCacheStorage(), func() {}
|
||
|
})
|
||
|
}
|