Add a couple more in-string eval unit tests to check for proper escaping

This commit is contained in:
Jonathan Turner
2009-09-13 12:53:12 +00:00
parent 0fbb7c44bd
commit 63de0fd33c
3 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
print("$ {4 + 5}")
print("$${4+5}")
print("Value: \${4 + 5}")
print("Value: \$${4 + 5}")

View File

@@ -0,0 +1,4 @@
$ {4 + 5}
$9
Value: ${4 + 5}
Value: $9