Add shadowsocks tests

This commit is contained in:
世界
2022-07-09 00:01:23 +08:00
parent 2cc746aafe
commit 3a298245a9
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")
}