templatableBoolPtr returns a pointer to a TemplatableBool value.
(s string)
| 19 | |
| 20 | // templatableBoolPtr returns a pointer to a TemplatableBool value. |
| 21 | func templatableBoolPtr(s string) *TemplatableBool { |
| 22 | value := TemplatableBool(s) |
| 23 | return &value |
| 24 | } |
| 25 | |
| 26 | // mockValidationError helps create validation errors for testing. |
| 27 | // This is a shared helper used by both unit and integration tests. |
no test coverage detected