blob: c2738b8a5b63fb235f809e59ffa0111ccdb7fc8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
discard """
outputsub: ""
"""
import nativesockets, unittest
suite "nativesockets":
test "getHostname":
let hostname = getHostname()
check hostname.len > 0
check hostname.len < 64
|