discord-auto-upload/version/version_test.go

12 lines
169 B
Go
Raw Normal View History

package version
2021-06-17 18:47:59 +09:30
import (
"testing"
)
func TestVersioning(t *testing.T) {
2021-10-11 21:02:08 +10:30
if !NewVersionAvailable("v1.0.0") {
t.Error("should be a version newer than v1.0.0")
2021-06-17 18:47:59 +09:30
}
}