mirror of
https://github.com/logos-storage/nim-libp2p.git
synced 2026-01-07 16:13:10 +00:00
10 lines
214 B
Nim
10 lines
214 B
Nim
|
|
import unittest
|
||
|
|
import ../libp2p/ipnet/iface
|
||
|
|
|
||
|
|
suite "OS interfaces list suite":
|
||
|
|
test "Get interfaces list test":
|
||
|
|
var ifaces = getInterfaces()
|
||
|
|
for item in ifaces:
|
||
|
|
echo item
|
||
|
|
check len(ifaces) > 0
|