mirror of
https://github.com/safing/portbase
synced 2025-09-02 10:40:39 +00:00
9 lines
153 B
Go
9 lines
153 B
Go
package osdetail
|
|
|
|
import "testing"
|
|
|
|
func TestWindowsVersion(t *testing.T) {
|
|
if WindowsVersion() == "" {
|
|
t.Fatal("could not get windows version")
|
|
}
|
|
}
|