1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-02 22:05:46 +02:00
goreleaser/pipeline/git/git_test.go
Carlos Alexandro Becker 652f57ef2e
more tests
2017-03-25 20:40:45 -03:00

26 lines
509 B
Go

package git
import (
"testing"
"github.com/goreleaser/goreleaser/config"
"github.com/goreleaser/goreleaser/context"
"github.com/stretchr/testify/assert"
)
func TestDescription(t *testing.T) {
assert.NotEmpty(t, Pipe{}.Description())
}
func TestValidVersion(t *testing.T) {
assert := assert.New(t)
var ctx = &context.Context{
Config: config.Project{},
}
assert.NoError(Pipe{}.Run(ctx))
assert.NotEmpty(ctx.Git.CurrentTag)
assert.NotEmpty(ctx.Git.PreviousTag)
assert.NotEmpty(ctx.Git.Diff)
}