Files
httprunner/hrp/internal/builtin/utils_test.go
2024-08-14 16:28:30 +08:00

13 lines
225 B
Go

package builtin
import (
"testing"
)
func TestDownload(t *testing.T) {
err := DownloadFile("/tmp/bytedance.ds.zip", "https://gtf-eapi-cn.bytedance.com/cn/mostRecent/bytedance.ds.zip")
if err != nil {
t.Fatal(err)
}
}