1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-22 04:08:49 +02:00

15 lines
318 B
Go
Raw Normal View History

2017-08-20 16:50:34 -03:00
package testlib
import (
"testing"
2018-09-12 14:18:01 -03:00
"github.com/goreleaser/goreleaser/internal/pipe"
2017-08-20 16:50:34 -03:00
"github.com/stretchr/testify/assert"
)
// AssertSkipped asserts that a pipe was skipped
func AssertSkipped(t *testing.T, err error) {
2018-09-12 14:18:01 -03:00
_, ok := err.(pipe.ErrSkip)
assert.True(t, ok, "expected a pipe.ErrSkip but got %v", err)
2017-08-20 16:50:34 -03:00
}