13 lines
210 B
Go
13 lines
210 B
Go
package iptables
|
|
|
|
import (
|
|
"iptables-helper/pkg/utils/command"
|
|
"testing"
|
|
)
|
|
|
|
func TestFlag(t *testing.T) {
|
|
cmder := command.Commander{}
|
|
result := cmder.ExecuteWithResult("sudo iptables -S")
|
|
Parse(result)
|
|
}
|