16 lines
246 B
Go
16 lines
246 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/moby/buildkit/util/testutil/integration"
|
||
|
)
|
||
|
|
||
|
var testCases = map[string]integration.Test{
|
||
|
"TestDiskUsage": testDiskUsage,
|
||
|
}
|
||
|
|
||
|
func TestCLIIntegration(t *testing.T) {
|
||
|
integration.Run(t, testCases)
|
||
|
}
|