1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/pipeline/release/body_test.go
2017-04-19 16:59:26 -03:00

38 lines
868 B
Go

package release
import (
"os"
"testing"
"github.com/goreleaser/goreleaser/context"
"github.com/stretchr/testify/assert"
)
func TestBody(t *testing.T) {
var assert = assert.New(t)
var changelog = "\nfeature1: description\nfeature2: other description"
var ctx = &context.Context{
Changelog: changelog,
}
out, err := buildBody(ctx)
assert.NoError(err)
assert.Contains(out.String(), "## Changelog")
assert.Contains(out.String(), changelog)
assert.Contains(out.String(), "Automated with @goreleaser")
assert.Contains(out.String(), "Built with go version go1.8")
}
func TestGoVersionFails(t *testing.T) {
var assert = assert.New(t)
var path = os.Getenv("PATH")
defer func() {
assert.NoError(os.Setenv("PATH", path))
}()
os.Setenv("PATH", "")
var ctx = &context.Context{
Changelog: "changelog",
}
_, err := buildBody(ctx)
assert.Error(err)
}