d195680ec1
This adds a basic test for consul template, that verifies the behaviour of consul-template with task blocking and restarting of tasks
15 lines
269 B
Go
15 lines
269 B
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/hashicorp/nomad/e2e/affinities"
|
|
_ "github.com/hashicorp/nomad/e2e/consultemplate"
|
|
_ "github.com/hashicorp/nomad/e2e/example"
|
|
_ "github.com/hashicorp/nomad/e2e/spread"
|
|
)
|
|
|
|
func TestE2E(t *testing.T) {
|
|
RunE2ETests(t)
|
|
}
|