gomod/gomod_test.go

14 lines
210 B
Go
Raw Normal View History

2023-07-22 08:00:31 +00:00
package gomod
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetTag(t *testing.T) {
value, err := getCommitID("https://github.com/spf13/cobra")
assert.NoError(t, err)
t.Log(value)
}