File: git_test.go

package info (click to toggle)
gitlab-agent 16.1.3-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 6,324 kB
  • sloc: makefile: 175; sh: 52; ruby: 3
file content (13 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package git

import (
	"testing"

	"github.com/stretchr/testify/require"
)

func TestExplicitRefOrHead(t *testing.T) {
	require.Equal(t, "refs/heads/implicit", ExplicitRefOrHead("implicit"), "Branch name becomes explicit")
	require.Equal(t, "refs/heads/explicit", ExplicitRefOrHead("refs/heads/explicit"), "Explicit ref is left intact")
	require.Equal(t, "HEAD", ExplicitRefOrHead(""), "Empty ref becomes HEAD")
}