Files
Nim/tests/untestable/network/stdlib/tnet.nim
2019-03-17 16:58:27 +00:00

17 lines
383 B
Nim

discard """
outputsub: ""
"""
import net, nativesockets
import unittest
suite "getPrimaryIPAddr":
test "localhost v4":
check getPrimaryIPAddr(parseIpAddress("127.0.0.1")) == parseIpAddress("127.0.0.1")
test "localhost v6":
check getPrimaryIPAddr(parseIpAddress("::1")) == parseIpAddress("::1")
test "v4":
check getPrimaryIPAddr() != parseIpAddress("127.0.0.1")