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

10 lines
164 B
V
Raw Normal View History

2020-09-06 16:04:27 +03:00
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 { }
}