mirror of https://github.com/databricks/cli.git
13 lines
204 B
Go
13 lines
204 B
Go
|
package config_tests
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestIncludeOverride(t *testing.T) {
|
||
|
root := load(t, "./include_override")
|
||
|
assert.Empty(t, root.Resources.Jobs)
|
||
|
}
|