// Copyright (c) 2026 Petr BalvĂ­n (https://petrbalvin.org) // SPDX-License-Identifier: MIT //go:build linux || freebsd package version import "testing" func TestName(t *testing.T) { if Name != "nuntius" { t.Errorf("Name = %q, want %q", Name, "nuntius") } } func TestVersion(t *testing.T) { if Version == "" { t.Error("Version must not be empty") } }