1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00
Carlos Alexandro Becker ce7a2227a0
fixed tests
2017-08-20 16:50:34 -03:00

15 lines
274 B
Go

package testlib
import (
"testing"
"github.com/goreleaser/goreleaser/pipeline"
"github.com/stretchr/testify/assert"
)
// AssertSkipped asserts that a pipe was skipped
func AssertSkipped(t *testing.T, err error) {
_, ok := err.(pipeline.ErrSkip)
assert.True(t, ok)
}