mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
12 lines
196 B
Nim
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
|