Skip to content

Commit

Permalink
Failed to add the new files and renames.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikogan committed Jun 11, 2019
1 parent 05568fb commit 48c01c1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/templates/filters/boolean.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{% if test.boolean.true|boolean %}cool{% else %}bad{% endif %}

{% if test.boolean.yes|boolean %}cool{% else %}bad{% endif %}

{% if test.boolean.true|upper|boolean %}cool{% else %}bad{% endif %}

{% if test.boolean.yes|boolean %}cool{% else %}bad{% endif %}

{% if test.boolean.one|boolean %}cool{% else %}bad{% endif %}

{% if test.boolean.false|boolean %}bad{% else %}cool{% endif %}

{% if test.boolean.false|upper|boolean %}bad{% else %}cool{% endif %}

{% if test.boolean.no|boolean %}bad{% else %}cool{% endif %}

{% if test.boolean.zero|boolean %}bad{% else %}cool{% endif %}
1 change: 1 addition & 0 deletions tests/templates/filters/readfile.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ test.data.path|readfile }}
1 change: 1 addition & 0 deletions tests/templates/single-line-error.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ test.var|nofilter }}

0 comments on commit 48c01c1

Please sign in to comment.