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")},
|
||
|
})
|
||
|
}
|