2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 06:10:44 +00:00

19 lines
478 B
Go

package structs
import (
"github.com/mitchellh/go-testing-interface"
)
// TestIntention returns a valid, uninserted (no ID set) intention.
func TestIntention(t testing.T) *Intention {
return &Intention{
SourceNS: IntentionDefaultNamespace,
SourceName: "api",
DestinationNS: IntentionDefaultNamespace,
DestinationName: "db",
Action: IntentionActionAllow,
SourceType: IntentionSourceConsul,
Meta: map[string]string{},
}
}