mirror of https://github.com/databricks/cli.git
13 lines
189 B
Go
13 lines
189 B
Go
|
package config_tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestBasic(t *testing.T) {
|
||
|
root := load(t, "./basic")
|
||
|
assert.Equal(t, "basic", root.Bundle.Name)
|
||
|
}
|