mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-06 22:37:21 +02:00
15 lines
219 B
Go
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")
|
|
}
|
|
}
|