I have a simple fixture.yml file:
fixture.yml
label: body: \"<%= variable %>\"
The issue is that the ERB code is parsed as part
Add a second % to the opening tag:
%
label: body: "<%%= variable %>"
The <%% sequence is valid ERB, rendered as a literal <%.
<%%
<%