mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18 lines
329 B
Go
18 lines
329 B
Go
package iptables
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestIptables(t *testing.T) {
|
|
if _, err := Raw("-L"); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
path := os.Getenv("PATH")
|
|
os.Setenv("PATH", "")
|
|
defer os.Setenv("PATH", path)
|
|
if _, err := Raw("-L"); err == nil {
|
|
t.Fatal("Not finding iptables in the PATH should cause an error")
|
|
}
|
|
}
|