mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-30 06:46:36 +08:00
13 lines
190 B
Go
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")
|
|
}
|