distea/forge/forge_test.go
jolheiser aafc891fd7
Partially implement Gitea and change tests to test_repo
Closes #1

Signed-off-by: jolheiser <john.olheiser@gmail.com>
2022-03-24 15:36:34 -05:00

14 lines
146 B
Go

package forge
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
githubRepo = "test_repo"
giteaRepo = "test_repo"
os.Exit(m.Run())
}