mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
24 lines
522 B
Go
24 lines
522 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestError(t *testing.T) {
|
||
|
t.Run("no errors", func(t *testing.T) {
|
||
|
require.NoError(t, ErrHandler(mockAction(nil))(ctx))
|
||
|
})
|
||
|
|
||
|
t.Run("pipe skipped", func(t *testing.T) {
|
||
|
require.NoError(t, ErrHandler(mockAction(pipe.ErrSkipValidateEnabled))(ctx))
|
||
|
})
|
||
|
|
||
|
t.Run("some err", func(t *testing.T) {
|
||
|
require.Error(t, ErrHandler(mockAction(fmt.Errorf("pipe errored")))(ctx))
|
||
|
})
|
||
|
}
|