12 lines
200 B
Go
12 lines
200 B
Go
package executor
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ctestutil "github.com/hashicorp/nomad/client/testutil"
|
|
)
|
|
|
|
func TestExecutorLinux(t *testing.T) {
|
|
testExecutor(t, NewLinuxExecutor, ctestutil.ExecCompatible)
|
|
}
|