mirror of https://github.com/databricks/cli.git
20 lines
474 B
Go
20 lines
474 B
Go
package labs_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/internal"
|
|
"github.com/databricks/cli/libs/env"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestListingWorks(t *testing.T) {
|
|
ctx := context.Background()
|
|
ctx = env.WithUserHomeDir(ctx, "project/testdata/installed-in-home")
|
|
c := internal.NewCobraTestRunnerWithContext(t, ctx, "labs", "list")
|
|
stdout, _, err := c.Run()
|
|
require.NoError(t, err)
|
|
require.Contains(t, stdout.String(), "ucx")
|
|
}
|