mirror of https://github.com/databricks/cli.git
27 lines
615 B
Go
27 lines
615 B
Go
package yamlloader_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/libs/config"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestYAMLMix01(t *testing.T) {
|
|
file := "testdata/mix_01.yml"
|
|
self := loadYAML(t, file)
|
|
assert.NotEqual(t, config.NilValue, self)
|
|
|
|
assert.True(t, self.Get("base_address").IsAnchor())
|
|
assert.False(t, self.Get("office_address").IsAnchor())
|
|
}
|
|
|
|
func TestYAMLMix02(t *testing.T) {
|
|
file := "testdata/mix_02.yml"
|
|
self := loadYAML(t, file)
|
|
assert.NotEqual(t, config.NilValue, self)
|
|
|
|
assert.True(t, self.Get("base_colors").IsAnchor())
|
|
assert.False(t, self.Get("theme").IsAnchor())
|
|
}
|