Home
last modified time | relevance | path

Searched refs:checkQuotedCondRegex (Results 1 – 1 of 1) sorted by relevance

/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/src/ShellCheck/
H A DAnalytics.hs134 ,checkQuotedCondRegex
1307 prop_checkQuotedCondRegex1 = verify checkQuotedCondRegex "[[ $foo =~ \"bar.*\" ]]"
1308 prop_checkQuotedCondRegex2 = verify checkQuotedCondRegex "[[ $foo =~ '(cow|bar)' ]]"
1309 prop_checkQuotedCondRegex3 = verifyNot checkQuotedCondRegex "[[ $foo =~ $foo ]]"
1310 prop_checkQuotedCondRegex4 = verifyNot checkQuotedCondRegex "[[ $foo =~ \"bar\" ]]"
1311 prop_checkQuotedCondRegex5 = verifyNot checkQuotedCondRegex "[[ $foo =~ 'cow bar' ]]"
1312 prop_checkQuotedCondRegex6 = verify checkQuotedCondRegex "[[ $foo =~ 'cow|bar' ]]"
1313 checkQuotedCondRegex _ (TC_Binary _ _ "=~" _ rhs) = function
1328 checkQuotedCondRegex _ _ = return () function