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

tests: rename _test.v files with dup names (temp workaround for highly parallel testing)

This commit is contained in:
Delyan Angelov
2020-10-14 18:25:26 +03:00
parent e02f25a108
commit 3c48a6e4ce
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import encoding.utf8 { validate_str }
fn test_validate_str() {
assert validate_str('añçá') == true
assert validate_str('\x61\xC3\xB1\xC3\xA7\xC3\xA1') == true
assert validate_str('\xC0\xC1') == false
assert validate_str('\xF5\xFF') == false
assert validate_str('\xE0\xEF') == false
}