open-consul/agent/structs/testing_intention.go

16 lines
315 B
Go
Raw Normal View History

2018-03-03 17:43:37 +00:00
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: "eng",
SourceName: "api",
DestinationNS: "eng",
DestinationName: "db",
}
}