We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7be1c15 + 32f15a3 commit 31fd898Copy full SHA for 31fd898
1 file changed
Tests/Fixtures/script_names.test
@@ -2,15 +2,15 @@
2
"script_names" function
3
--TEMPLATE--
4
{{ script_names('UNKNOWN')|length }}
5
-{{ script_names() is iterable }}
6
-{{ script_names('fr') is iterable }}
+{{ script_names()|length > 200 ? 'more than 200' : 'less than 200' }}
+{{ script_names('fr')|length > 200 ? 'more than 200' : 'less than 200' }}
7
{{ script_names()['Marc'] }}
8
{{ script_names('fr')['Marc'] }}
9
--DATA--
10
return [];
11
--EXPECT--
12
0
13
-1
14
+more than 200
15
Marchen
16
0 commit comments