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) {
if !NewVersionAvailable("v0.1.0") {
2021-06-17 18:47:59 +09:30
t.Error("should be a version newer than v0.1.0")
}
}