mirror of https://github.com/databricks/cli.git
13 lines
266 B
Go
13 lines
266 B
Go
|
package internal
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestSecretsCreateScopeErrWhenNoArguments(t *testing.T) {
|
||
|
_, _, err := RequireErrorRun(t, "secrets", "create-scope")
|
||
|
assert.Equal(t, "accepts 1 arg(s), received 0", err.Error())
|
||
|
}
|