1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-09 01:16:05 +02:00
Files
goreleaser/context/context_test.go
Carlos Alexandro Becker 306b84d040 fix: test using wrong import
2017-12-18 20:49:13 -02:00

15 lines
252 B
Go

package context
import (
"testing"
"github.com/goreleaser/goreleaser/config"
"github.com/stretchr/testify/assert"
)
func TestNew(t *testing.T) {
var ctx = New(config.Project{})
assert.NotEmpty(t, ctx.Env)
assert.Equal(t, 4, ctx.Parallelism)
}