go-firewall/integration_freebsd_test.go
2026-07-08 15:54:48 -05:00

16 lines
395 B
Go

//go:build integration
package firewall
import (
"context"
"testing"
)
// TestIntegration runs the capability-driven suite against FreeBSD's pf backend.
// See integration_test.go for the shared suite and runIntegration.
func TestIntegration(t *testing.T) {
runIntegration(t, []backendFactory{
{"pf", func(ctx context.Context, p string) (Manager, error) { return NewPF(ctx, p) }},
})
}