mirror of https://github.com/databricks/cli.git
13 lines
239 B
Go
13 lines
239 B
Go
|
package config_tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestEnvironmentKeySupported(t *testing.T) {
|
||
|
_, diags := loadTargetWithDiags("./python_wheel/environment_key", "default")
|
||
|
require.Empty(t, diags)
|
||
|
}
|