mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
451 B
25 lines
451 B
package git
|
|
|
|
import (
|
|
"testing"
|
|
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestRevParse(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
rev, err := RevParse("HEAD")
|
|
assert.Error(err).IsNil()
|
|
assert.Int(len(rev)).GreaterThan(0)
|
|
}
|
|
|
|
func TestRepoVersion(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
version, err := RepoVersionHead()
|
|
assert.Error(err).IsNil()
|
|
assert.Int(len(version)).GreaterThan(0)
|
|
}
|