1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/internal/pipe/publish/publish_test.go
Carlos Alexandro Becker 24c6401341 test: skip publish
2018-10-20 14:42:46 -03:00

30 lines
715 B
Go

package publish
import (
"testing"
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/pkg/config"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/stretchr/testify/require"
)
func TestDescription(t *testing.T) {
require.NotEmpty(t, Pipe{}.String())
}
func TestPublishDisable(t *testing.T) {
var ctx = context.New(config.Project{})
ctx.SkipPublish = true
require.EqualError(t, Pipe{}.Run(ctx), pipe.ErrSkipPublishEnabled.Error())
}
func TestPublish(t *testing.T) {
var ctx = context.New(config.Project{})
ctx.Config.Release.Disable = true
for i := range ctx.Config.Dockers {
ctx.Config.Dockers[i].SkipPush = true
}
require.NoError(t, Pipe{}.Run(ctx))
}