cmd: Add test to show set "FOO=bar" should not include the quotes in the variable value.
This commit is contained in:
parent
786429b3d7
commit
9d63b91405
|
@ -9,3 +9,8 @@ echo "doublequotedword"
|
|||
echo "/?"
|
||||
echo.
|
||||
echo .
|
||||
|
||||
echo ------------ Testing 'set' --------------
|
||||
echo set "FOO=bar" should not include the quotes in the variable value
|
||||
set "FOO=bar"
|
||||
echo %FOO%
|
||||
|
|
|
@ -9,3 +9,6 @@ at-echoed-word
|
|||
"/?"
|
||||
|
||||
.
|
||||
------------ Testing 'set' --------------
|
||||
set "FOO=bar" should not include the quotes in the variable value
|
||||
bar
|
||||
|
|
Loading…
Reference in New Issue