discord-auto-upload/version/version_test.go

12 lines
169 B
Go

package version
import (
"testing"
)
func TestVersioning(t *testing.T) {
if !NewVersionAvailable("v1.0.0") {
t.Error("should be a version newer than v1.0.0")
}
}