summaryrefslogtreecommitdiff
path: root/specs/sections.yml
diff options
context:
space:
mode:
Diffstat (limited to 'specs/sections.yml')
-rw-r--r--specs/sections.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/specs/sections.yml b/specs/sections.yml
index dbfae8e..5d61227 100644
--- a/specs/sections.yml
+++ b/specs/sections.yml
@@ -70,15 +70,15 @@ tests:
- name: Doubled
desc: Multiple sections per template should be permitted.
- data: { t: true, two: 'second' }
+ data: { bool: true, two: 'second' }
template: |
- {{#t}}
+ {{#bool}}
* first
- {{/t}}
+ {{/bool}}
* {{two}}
- {{#t}}
+ {{#bool}}
* third
- {{/t}}
+ {{/bool}}
expected: |
* first
* second
@@ -86,14 +86,14 @@ tests:
- name: Nested (Truthy)
desc: Nested truthy sections should have their contents rendered.
- data: { t: true }
- template: "| A {{#t}}B {{#t}}C{{/t}} D{{/t}} E |"
+ data: { bool: true }
+ template: "| A {{#bool}}B {{#bool}}C{{/bool}} D{{/bool}} E |"
expected: "| A B C D E |"
- name: Nested (Falsey)
desc: Nested falsey sections should be omitted.
- data: { t: false }
- template: "| A {{#t}}B {{#t}}C{{/t}} D{{/t}} E |"
+ data: { bool: false }
+ template: "| A {{#bool}}B {{#bool}}C{{/bool}} D{{/bool}} E |"
expected: "| A E |"
# Whitespace Sensitivity