mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-31 05:19:38 +08:00
13 lines
225 B
Go
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)
|
|
}
|
|
}
|