Skip to content

Commit

Permalink
NSIS: Add test for new constants Regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Dec 4, 2021
1 parent d7d17f8 commit d53807a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/languages/nsis/constant_feature.test
@@ -1,21 +1,25 @@
$(myLicenseData)
$(^Name)
$(!Name)
${LANG_ENGLISH}
${AtLeastWin8.1}
${nsArray_Copy}
${xml::CreateNode}
${^EXAMPLE}
${!defineifexist}

----------------------------------------------------

[
["constant", "$(myLicenseData)"],
["constant", "$(^Name)"],
["constant", "$(!Name)"],
["constant", "${LANG_ENGLISH}"],
["constant", "${AtLeastWin8.1}"],
["constant", "${nsArray_Copy}"],
["constant", "${xml::CreateNode}"],
["constant", "${^EXAMPLE}"]
["constant", "${^EXAMPLE}"],
["constant", "${!defineifexist}"]
]

----------------------------------------------------
Expand Down

0 comments on commit d53807a

Please sign in to comment.