protoc-gen-go-micro/vendor/github.com/Masterminds/sprig/flow_control_test.go
Manfred Touron 5448f25fd6
glide up
2017-05-18 23:33:43 +02:00

17 lines
279 B
Go

package sprig
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestFail(t *testing.T) {
const msg = "This is an error!"
tpl := fmt.Sprintf(`{{fail "%s"}}`, msg)
_, err := runRaw(tpl, nil)
assert.Error(t, err)
assert.Contains(t, err.Error(), msg)
}