mirror of https://github.com/databricks/cli.git
18 lines
501 B
Go
18 lines
501 B
Go
|
package config_tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestEnvironmentOverridesDev(t *testing.T) {
|
||
|
b := loadEnvironment(t, "./environment_overrides", "development")
|
||
|
assert.Equal(t, "https://development.acme.cloud.databricks.com/", b.Config.Workspace.Host)
|
||
|
}
|
||
|
|
||
|
func TestEnvironmentOverridesStaging(t *testing.T) {
|
||
|
b := loadEnvironment(t, "./environment_overrides", "staging")
|
||
|
assert.Equal(t, "https://staging.acme.cloud.databricks.com/", b.Config.Workspace.Host)
|
||
|
}
|