mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
16 lines
208 B
V
16 lines
208 B
V
import os
|
|
|
|
fn test_data_dir() {
|
|
d := os.data_dir()
|
|
assert d.len > 0
|
|
}
|
|
|
|
fn test_state_dir() {
|
|
d := os.state_dir()
|
|
assert d.len > 0
|
|
}
|
|
|
|
fn test_local_bin_dir() {
|
|
d := os.local_bin_dir()
|
|
assert d.len > 0
|
|
}
|