mirror of https://github.com/databricks/cli.git
19 lines
364 B
Go
19 lines
364 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestArtifactBuild(t *testing.T) {
|
||
|
artifact := Artifact{
|
||
|
BuildCommand: "echo 'Hello from build command'",
|
||
|
}
|
||
|
res, err := artifact.Build(context.Background())
|
||
|
assert.NoError(t, err)
|
||
|
assert.NotNil(t, res)
|
||
|
assert.Equal(t, "Hello from build command\n", string(res))
|
||
|
}
|