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

szip: make compile (#6314)

This commit is contained in:
Enzo
2020-09-06 15:04:27 +02:00
committed by GitHub
parent 51d7d7cfae
commit 601d098b48
5 changed files with 303 additions and 152 deletions

9
vlib/szip/szip_test.v Normal file
View File

@@ -0,0 +1,9 @@
import szip
import os
fn test_compile() {
szip.open('test_compile.zip', szip.best_speed, szip.m_write) or {
assert false
}
os.rm('test_compile.zip') or { }
}