mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-02 06:47:51 +08:00
12 lines
213 B
Go
12 lines
213 B
Go
package updates
|
|
|
|
import "testing"
|
|
|
|
// TestParseVersion just makes sure that we dont commit a bad version number
|
|
func TestParseVersion(t *testing.T) {
|
|
_, err := parseVersion()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|