Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
c8cdd4c3
Commit
c8cdd4c3
authored
Mar 18, 2019
by
Carsten Rose
Browse files
Refs #8043: unit test
parent
c691a95d
Pipeline
#1758
failed with stage
in 2 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Tests/unit/core/EvaluateTest.php
View file @
c8cdd4c3
...
...
@@ -574,7 +574,8 @@ class EvaluateTest extends AbstractDatabaseTest {
$this
->
assertEquals
(
'go start {{hidden:F:alnumx}} end stop'
,
$eval
->
parse
(
'go {{a:F:all:S}} stop'
));
// Check that there is no exception if not found in the first/second store but in third store
$this
->
assertEquals
(
'go start magic value end stop'
,
$eval
->
parse
(
'go {{a:SYF:all:X}} stop'
));
$this
->
store
->
setVar
(
'a'
,
'sunshine'
,
STORE_FORM
,
true
);
$this
->
assertEquals
(
'go sunshine stop'
,
$eval
->
parse
(
'go {{a:SRF:all:X}} stop'
));
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment