Supported symbols are =
and ==
{% if TestValue = 'Testing' %}Is Testing{% else %}Is Not Testing{% endif %}
{% if TestValue == 'Testing' %}Is Testing{% else %}Is Not Testing{% endif %}
Supported symbol is !=
{% if TestValue != 'Testing' %}Is Not Testing{% else %}Is Testing{% endif %}