mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
17 lines
406 B
Go
17 lines
406 B
Go
|
package testlib
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
// RequireTemplateError requires thqt an error happens and that it is an template error.
|
||
|
func RequireTemplateError(tb testing.TB, err error) {
|
||
|
tb.Helper()
|
||
|
|
||
|
require.Error(tb, err)
|
||
|
require.Contains(tb, err.Error(), "template:")
|
||
|
require.Regexp(tb, "bad character|map has no entry|unexpected \"}\" in operand", err.Error())
|
||
|
}
|