1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/internal/pipe/publish/publish_test.go
Carlos Alexandro Becker 0b04e454fc test: fix
2018-10-16 22:20:53 -03:00

27 lines
635 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
require.NoError(t, Pipe{}.Run(ctx))
}