Files
netio1/if_test.v
T
2026-04-29 21:45:37 +03:00

21 lines
404 B
V

import netio
fn test_name_to_index() {
assert netio.name_to_index('lo')! == 1
}
fn test_index_to_name() {
assert netio.index_to_name(1)! == 'lo'
}
fn test_network_interfaces() {
ifs := netio.network_interfaces()!
// dump(ifs)
assert ifs.len > 0
}
fn test_find_network_interface() {
assert netio.find_network_interface('lo')!.name == 'lo'
assert netio.find_network_interface('1')!.index == 1
}