mirror of https://github.com/databricks/cli.git
25 lines
444 B
Go
25 lines
444 B
Go
package root
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSkipPrompt(t *testing.T) {
|
|
ctx := context.Background()
|
|
assert.False(t, shouldSkipPrompt(ctx))
|
|
|
|
ctx = SkipPrompt(ctx)
|
|
assert.True(t, shouldSkipPrompt(ctx))
|
|
}
|
|
|
|
func TestSkipLoadBundle(t *testing.T) {
|
|
ctx := context.Background()
|
|
assert.False(t, shouldSkipLoadBundle(ctx))
|
|
|
|
ctx = SkipLoadBundle(ctx)
|
|
assert.True(t, shouldSkipLoadBundle(ctx))
|
|
}
|