alef-e2e 0.15.25

Fixture-driven e2e test generator for alef
Documentation
{#- Ruby visitor method template

   Context variables:
   - method_name: visitor method name
   - params: parameter list
   - action_type: "skip", "continue", "preserve_html", "custom", "custom_template"
   - action_value: escaped string value (for custom)
   - action_template: escaped template string (for custom_template)
#}
  def {{ method_name }}({{ params }})
{% if action_type == "skip" %}
    'skip'
{% elif action_type == "continue" %}
    'continue'
{% elif action_type == "preserve_html" %}
    'preserve_html'
{% elif action_type == "custom" %}
    { custom: {{ action_value }} }
{% elif action_type == "custom_template" %}
    { custom: {{ action_value }} }
{% endif %}
  end