1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

added tests

This commit is contained in:
Carlos Alexandro Becker 2017-04-14 12:15:51 -03:00
parent 7c0e2628a4
commit 3a97034a34
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

34
context/context_test.go Normal file
View File

@ -0,0 +1,34 @@
package context
import (
"testing"
"golang.org/x/sync/errgroup"
"github.com/goreleaser/goreleaser/config"
"github.com/stretchr/testify/assert"
)
func TestMultipleArtifactAdds(t *testing.T) {
var assert = assert.New(t)
var list = []string{
"dist/a",
"dist/b",
"dist/c",
"dist/d",
}
var ctx = New(config.Project{
Dist: "dist",
})
var g errgroup.Group
for _, f := range list {
f := f
g.Go(func() error {
ctx.AddArtifact(f)
return nil
})
}
assert.NoError(g.Wait())
assert.Len(ctx.Artifacts, len(list))
assert.Contains(ctx.Artifacts, "a", "b", "c", "d")
}