mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
9 lines
166 B
Nim
9 lines
166 B
Nim
import nativesockets, unittest
|
|
|
|
suite "nativesockets":
|
|
test "getHostname":
|
|
let hostname = getHostname()
|
|
check hostname.len > 0
|
|
check hostname.len < 64
|
|
|