jolheiser
aafc891fd7
All checks were successful
continuous-integration/drone/push Build is passing
Closes #1 Signed-off-by: jolheiser <john.olheiser@gmail.com>
14 lines
146 B
Go
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())
|
|
}
|