This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/serverconfigs/ipconfigs/action_ipset_test.go
T

13 lines
190 B
Go

package ipconfigs
import "testing"
func TestIPSetAction_Run(t *testing.T) {
action := &IPSetAction{}
err := action.Run(&IPItemConfig{})
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}