Expression wrappers test.

This commit is contained in:
go-jet 2019-08-13 10:33:31 +02:00
parent 614c7e9754
commit 14c2c9d745
3 changed files with 113 additions and 25 deletions

View file

@ -23,6 +23,7 @@ func assertExecErr(t *testing.T, stmt jet.Statement, errorStr string) {
assert.Error(t, err, errorStr)
}
func BoolPtr(b bool) *bool {
return &b
}