This commit is contained in:
Donny Xia
2020-05-14 14:14:57 -07:00
parent cd3b87e483
commit 0b12f6c73d

View File

@@ -0,0 +1,12 @@
package main
import (
"testing"
)
func TestGetModuleCurrentVersion(t *testing.T) {
output := getModuleCurrentVersion("test")
if output != "v1.0.0" {
t.Errorf("Unexpected output: %s", output)
}
}