Files
Nim/tests/stdlib/tnativesockets.nim
2018-11-23 11:58:29 +01:00

12 lines
196 B
Nim

discard """
outputsub: ""
"""
import nativesockets, unittest
suite "nativesockets":
test "getHostname":
let hostname = getHostname()
check hostname.len > 0
check hostname.len < 64