16 lines
370 B
Go
16 lines
370 B
Go
package proxy
|
|
|
|
import "testing"
|
|
|
|
func TestNewProxyPool(t *testing.T) {
|
|
NewProxyPool(&Option{
|
|
Subscribes: []string{
|
|
"https://us.timerzz.com:26106/vmess/sub",
|
|
"https://us.timerzz.com:26106/trojan/sub",
|
|
"https://us.timerzz.com:26106/ssr/sub",
|
|
"https://us.timerzz.com:26106/ss/sub",
|
|
},
|
|
Clash: []string{"https://us.timerzz.com:26106/clash/proxies"},
|
|
})
|
|
}
|