diff options
author | Alex Crichton <alex@alexcrichton.com> | 2016-04-03 00:14:03 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2016-04-03 00:14:03 -0700 |
commit | b25592c2386f415cbe34c1c08defce6f452e66ff (patch) | |
tree | 3a39c16c6b29780d77cd153d04d21e3ab3f1797a /tests/valid/string-escapes.toml | |
parent | c53fceb42c6600983021e5fa7dca9976c36590f4 (diff) | |
parent | 8a207a83fe21da6e498697b9a0ec81932f5208e6 (diff) | |
download | milf-rs-b25592c2386f415cbe34c1c08defce6f452e66ff.tar.gz milf-rs-b25592c2386f415cbe34c1c08defce6f452e66ff.zip |
Merge pull request #92 from trlim/master
Update integration tests
Diffstat (limited to 'tests/valid/string-escapes.toml')
-rw-r--r-- | tests/valid/string-escapes.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/valid/string-escapes.toml b/tests/valid/string-escapes.toml index 9f9a8c0..c5d4954 100644 --- a/tests/valid/string-escapes.toml +++ b/tests/valid/string-escapes.toml @@ -6,3 +6,7 @@ carriage = "This string has a \r carriage return character." quote = "This string has a \" quote character." slash = "This string has a / slash character." backslash = "This string has a \\ backslash character." +notunicode1 = "This string does not have a unicode \\u escape." +notunicode2 = "This string does not have a unicode \u005Cu escape." +notunicode3 = "This string does not have a unicode \\u0075 escape." +notunicode4 = "This string does not have a unicode \\\u0075 escape." |