mirror of https://github.com/databricks/cli.git
15 lines
334 B
Go
15 lines
334 B
Go
|
package internal
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAccAlertsCreateErrWhenNoArguments(t *testing.T) {
|
||
|
t.Log(GetEnvOrSkipTest(t, "CLOUD_ENV"))
|
||
|
|
||
|
_, _, err := RequireErrorRun(t, "alerts", "create")
|
||
|
assert.Equal(t, "provide command input in JSON format by specifying --json option", err.Error())
|
||
|
}
|