mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-05 13:15:26 +02:00
15 lines
274 B
Go
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)
|
||
|
}
|