mirror of
https://github.com/therootcompany/pathman.git
synced 2025-07-05 18:06:30 +00:00
17 lines
200 B
Go
17 lines
200 B
Go
// +build windows
|
|
|
|
package winpath
|
|
|
|
import "testing"
|
|
|
|
func TestShow(t *testing.T) {
|
|
paths, err := Paths()
|
|
if nil != err {
|
|
t.Error(err)
|
|
}
|
|
|
|
if len(paths) < 1 {
|
|
t.Error("should have paths")
|
|
}
|
|
}
|