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

tools: add report_v_module_folders_without_tests.v . Use it to discover other modules without _test.v files. Add simple ones, to ensure CI can find more breakage on future wide changes to vlib/

This commit is contained in:
Delyan Angelov
2022-10-16 22:40:17 +03:00
parent 17800b4bca
commit 409a4f33a1
6 changed files with 88 additions and 4 deletions

View File

@ -0,0 +1,5 @@
import hash
fn test_hash_compiles() {
assert hash.sum64_string('abc', 5).hex_full() == 'ce2703347d216491'
}