mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
24 lines
393 B
Go
24 lines
393 B
Go
package git
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"v2ray.com/core/testing/assert"
|
|
)
|
|
|
|
func TestRevParse(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
rev, err := RevParse("HEAD")
|
|
assert.Error(err).IsNil()
|
|
assert.Int(len(rev)).GreaterThan(0)
|
|
}
|
|
|
|
func TestRepoVersion(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
version, err := RepoVersionHead()
|
|
assert.Error(err).IsNil()
|
|
assert.Int(len(version)).GreaterThan(0)
|
|
}
|