mirror of https://github.com/databricks/cli.git
13 lines
252 B
Go
13 lines
252 B
Go
|
package config_tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestEnvironmentEmpty(t *testing.T) {
|
||
|
b := loadEnvironment(t, "./environment_empty", "development")
|
||
|
assert.Equal(t, "development", b.Config.Bundle.Environment)
|
||
|
}
|