Add shadowsocks tests

This commit is contained in:
世界 2022-07-09 00:01:23 +08:00
parent f448b6b977
commit 7f8c9ffa30
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 1063 additions and 2 deletions

12
test/clash_other_test.go Normal file
View file

@ -0,0 +1,12 @@
//go:build !darwin
package main
import (
"errors"
"net/netip"
)
func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
}