Skip to content

Commit

Permalink
moved a test
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jun 3, 2019
1 parent 1f0f92b commit a42e02d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
--TEST--
macro
"macro" tag
--TEMPLATE--
{% extends "parent" %}
{% import _self as me %}

{% block test %}
{{ me.testMacro() }}
{{ me.hello() }}
{% endblock test %}
--TEMPLATE(parent)--
{% import _self as me %}
Expand All @@ -14,7 +14,7 @@ macro
Hello
{% endblock test %}

{% macro testMacro() %}
{% macro hello() %}
Test
{% endmacro %}
--DATA--
Expand Down

0 comments on commit a42e02d

Please sign in to comment.