1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: make error handling the same as the main function (#15825)

This commit is contained in:
yuyi
2022-09-22 00:45:43 +08:00
committed by GitHub
parent 391ac12fe2
commit 41dbd12bc4
69 changed files with 193 additions and 192 deletions

View File

@@ -36,7 +36,7 @@ fn test_json_string_non_ascii() {
assert text.json_str() == r'"\u3072\u3089\u304c\u306a"'
}
fn test_utf8_strings_are_not_modified() ? {
fn test_utf8_strings_are_not_modified() {
original := '{"s":"Schilddrüsenerkrankungen"}'
// dump(original)
deresult := json2.raw_decode(original)?
@@ -44,7 +44,7 @@ fn test_utf8_strings_are_not_modified() ? {
assert deresult.str() == original
}
fn test_encoder_unescaped_utf32() ? {
fn test_encoder_unescaped_utf32() {
jap_text := json2.Any('')
enc := json2.Encoder{
escape_unicode: false
@@ -61,7 +61,7 @@ fn test_encoder_unescaped_utf32() ? {
assert sb.str() == '"$emoji_text"'
}
fn test_encoder_prettify() ? {
fn test_encoder_prettify() {
obj := {
'hello': json2.Any('world')
'arr': [json2.Any('im a string'), [json2.Any('3rd level')]]