Expanding the sep helpers test.

This commit is contained in:
Tom Alexander 2020-06-07 14:07:32 -04:00
parent bb658284e6
commit 3ef2facc92
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 19 additions and 2 deletions

View File

@ -12,5 +12,12 @@
"name": "Chris", "name": "Chris",
"pet": "lizard" "pet": "lizard"
} }
] ],
"toys": [
"ball",
"bone"
],
"scalar": 7,
"name": "global name",
"pet": "global pet"
} }

View File

@ -1,3 +1,13 @@
{#people} {#people}
{name}{@sep petname="fluffy"},{pet}{petname}{/sep} {name}{@sep petname="fluffy"},{pet}{petname}{/sep}
{/people} {/people}{~n}
{#scalar}
{name}{@sep petname="fluffy"},{pet}{petname}{/sep}
{/scalar}{~n}
{#people}
{#toys}
{name}'s pet {pet} plays with a {.}{@sep}, {/sep}
{/toys}
{/people}{~n}