mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
15 lines
320 B
Go
15 lines
320 B
Go
package networking
|
|
|
|
import (
|
|
"github.com/hashicorp/nomad/e2e/e2eutil"
|
|
"github.com/hashicorp/nomad/e2e/framework"
|
|
)
|
|
|
|
func init() {
|
|
framework.AddSuites(&framework.TestSuite{
|
|
Component: "Networking",
|
|
CanRunLocal: true,
|
|
Cases: []framework.TestCase{e2eutil.NewE2EJob("networking/inputs/basic.nomad")},
|
|
})
|
|
}
|