mirror of https://github.com/databricks/cli.git
16 lines
289 B
Go
16 lines
289 B
Go
|
package labs_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/databricks/cli/cmd/internal"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestInstallDbx(t *testing.T) {
|
||
|
ctx := context.Background()
|
||
|
_, err := internal.RunGetOutput(ctx, "labs", "install", "dbx")
|
||
|
assert.NoError(t, err)
|
||
|
}
|