
Adds a function to generate chain names for use in iptables and ports all drivers to use that function. Also adds tests for the said function.
14 lines
188 B
Go
14 lines
188 B
Go
package utils_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestUtils(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Utils Suite")
|
|
}
|