ghorg/ghorg_test.go
2018-06-07 20:27:36 -07:00

15 lines
219 B
Go

package main
import (
"testing"
"github.com/gabrie30/ghorg/config"
)
func TestDefaultBranch(t *testing.T) {
branch := config.GhorgBranch
if branch != "master" {
t.Errorf("Default branch should be master")
}
}