mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
69c8a502db
* chore(deps): bump github.com/golangci/golangci-lint from 1.23.7 to 1.27.0 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
15 lines
319 B
Go
15 lines
319 B
Go
package testlib
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// AssertSkipped asserts that a pipe was skipped.
|
|
func AssertSkipped(t *testing.T, err error) {
|
|
_, ok := err.(pipe.ErrSkip)
|
|
assert.True(t, ok, "expected a pipe.ErrSkip but got %v", err)
|
|
}
|