gitlab.com/evatix-go/core@v1.3.55/cmd/main/versionComparesTest.go (about) 1 package main 2 3 func versionComparesTest() { 4 testRanges := map[string]string{ 5 "v0.0.1": "v0.0.1", 6 "v0.0.2": "v0.2.1", 7 "v3.0": "v0.2.1", 8 "v4": "v4.0", 9 } 10 11 for k, v := range testRanges { 12 versionCompareTest(k, v) 13 } 14 }