6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 17:24:49 +00:00
Files
git-get/pkg/list_test.go
2020-06-02 12:40:22 +02:00

18 lines
223 B
Go

package pkg
import (
"os"
"testing"
)
func TestList(t *testing.T) {
_ = os.Setenv(EnvReposRoot, "/home/gru/workspace")
paths, err := FindRepos()
checkFatal(t, err)
repos, _ := OpenAll(paths)
PrintRepos(repos)
}