Files
Nim/tests/stdlib/tnativesockets.nim
2017-03-01 09:44:24 +01:00

9 lines
166 B
Nim

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