diff --git a/ghorg_test.go b/ghorg_test.go new file mode 100644 index 0000000..882ebc6 --- /dev/null +++ b/ghorg_test.go @@ -0,0 +1,14 @@ +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") + } +}