summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_if.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-08 12:27:04 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-08 19:25:02 +0100
commit3278c31fa59b41d03aea167f4cf85f4ddf7f848d (patch)
tree0c80b4868391296335580242c8e65052a4f62a6b /tests/template_tests/syntax_tests/test_if.py
parent6a682b38e75d4c975b4c4493565a59f1bc14397c (diff)
[4.0.x] Refs #33476 -- Refactored code to strictly match 88 characters line length.
Backport of 7119f40c9881666b6f9b5cf7df09ee1d21cc8344 from main.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_if.py')
-rw-r--r--tests/template_tests/syntax_tests/test_if.py32
1 files changed, 25 insertions, 7 deletions
diff --git a/tests/template_tests/syntax_tests/test_if.py b/tests/template_tests/syntax_tests/test_if.py
index fda44b0672..36077f0687 100644
--- a/tests/template_tests/syntax_tests/test_if.py
+++ b/tests/template_tests/syntax_tests/test_if.py
@@ -53,7 +53,10 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag10": "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing{% endif %}"
+ "if-tag10": (
+ "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing"
+ "{% endif %}"
+ )
}
)
def test_if_tag10(self):
@@ -62,7 +65,10 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag11": "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing{% endif %}"
+ "if-tag11": (
+ "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing"
+ "{% endif %}"
+ )
}
)
def test_if_tag11(self):
@@ -71,7 +77,10 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag12": "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing{% endif %}"
+ "if-tag12": (
+ "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing"
+ "{% endif %}"
+ )
}
)
def test_if_tag12(self):
@@ -80,7 +89,10 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag13": "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing{% endif %}"
+ "if-tag13": (
+ "{% if foo %}foo{% elif bar %}bar{% elif baz %}baz{% else %}nothing"
+ "{% endif %}"
+ )
}
)
def test_if_tag13(self):
@@ -588,7 +600,9 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "else-if-tag-error01": "{% if foo is bar %} yes {% else if foo is not bar %} no {% endif %}"
+ "else-if-tag-error01": (
+ "{% if foo is bar %} yes {% else if foo is not bar %} no {% endif %}"
+ )
}
)
def test_else_if_tag_error01(self):
@@ -598,7 +612,9 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag-shortcircuit01": "{% if x.is_true or x.is_bad %}yes{% else %}no{% endif %}"
+ "if-tag-shortcircuit01": (
+ "{% if x.is_true or x.is_bad %}yes{% else %}no{% endif %}"
+ )
}
)
def test_if_tag_shortcircuit01(self):
@@ -610,7 +626,9 @@ class IfTagTests(SimpleTestCase):
@setup(
{
- "if-tag-shortcircuit02": "{% if x.is_false and x.is_bad %}yes{% else %}no{% endif %}"
+ "if-tag-shortcircuit02": (
+ "{% if x.is_false and x.is_bad %}yes{% else %}no{% endif %}"
+ )
}
)
def test_if_tag_shortcircuit02(self):