blob: 2c4d00c328500b2c7fca8e767f5313489b94ac69 [file] [log] [blame]
package git_common
import (
"context"
"testing"
assert "github.com/stretchr/testify/require"
"go.skia.org/infra/go/sklog"
"go.skia.org/infra/go/testutils"
)
func TestVersion(t *testing.T) {
testutils.SmallTest(t)
major, minor, err := Version(context.Background())
assert.NoError(t, err)
sklog.Errorf("%d.%d", major, minor)
}