aliyunpan/internal/plugins/plugin_util_test.go
2022-12-06 20:40:19 +08:00

15 lines
314 B
Go

package plugins
import (
"fmt"
"testing"
)
func TestDeleteLocalFile(t *testing.T) {
fmt.Println(DeleteLocalFile("/Volumes/Downloads/dev/upload/2"))
}
func TestSendEmail(t *testing.T) {
fmt.Println(sendEmail("smtp.qq.com:465", "111xxx@qq.com", "xxxxxx", "12545xxx@qq.com", "title", "hello", "text", true))
}