aboutsummaryrefslogtreecommitdiff
path: root/tests/valid/string-escapes.json
diff options
context:
space:
mode:
authorTae-il Lim <trlim@iotok.kr>2016-04-02 17:15:59 +0900
committerTae-il Lim <trlim@iotok.kr>2016-04-02 17:15:59 +0900
commit8a207a83fe21da6e498697b9a0ec81932f5208e6 (patch)
tree3a39c16c6b29780d77cd153d04d21e3ab3f1797a /tests/valid/string-escapes.json
parentc53fceb42c6600983021e5fa7dca9976c36590f4 (diff)
downloadmilf-rs-8a207a83fe21da6e498697b9a0ec81932f5208e6.tar.gz
milf-rs-8a207a83fe21da6e498697b9a0ec81932f5208e6.zip
Update integration tests to BurntSushi/toml-test@2f1c20de60bc9de743bdb8c7d2e79172fb28e6f8
Diffstat (limited to 'tests/valid/string-escapes.json')
-rw-r--r--tests/valid/string-escapes.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/valid/string-escapes.json b/tests/valid/string-escapes.json
index ca71d30..62dac51 100644
--- a/tests/valid/string-escapes.json
+++ b/tests/valid/string-escapes.json
@@ -30,5 +30,21 @@
"backslash": {
"type": "string",
"value": "This string has a \u005C backslash character."
+ },
+ "notunicode1": {
+ "type": "string",
+ "value": "This string does not have a unicode \\u escape."
+ },
+ "notunicode2": {
+ "type": "string",
+ "value": "This string does not have a unicode \u005Cu escape."
+ },
+ "notunicode3": {
+ "type": "string",
+ "value": "This string does not have a unicode \\u0075 escape."
+ },
+ "notunicode4": {
+ "type": "string",
+ "value": "This string does not have a unicode \\\u0075 escape."
}
}