removing driver_mock

This commit is contained in:
Diptanu Choudhury
2016-08-23 16:05:03 -05:00
parent 23c53ba5db
commit 2ef1d7e949
2 changed files with 5 additions and 8 deletions

View File

@@ -1,8 +0,0 @@
// +build nomad_test
package driver
// Add the mock driver
func init() {
BuiltinDrivers["mock_driver"] = NewMockDriver
}

View File

@@ -16,6 +16,11 @@ import (
"github.com/hashicorp/nomad/nomad/structs"
)
// Add the mock driver to the list of builtin drivers
func init() {
BuiltinDrivers["mock_driver"] = NewMockDriver
}
// MockDriverConfig is the driver configuration for the MockDriver
type MockDriverConfig struct {