2016-04-14 17:29:27 -07:00
|
|
|
package triton
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func testConfig(t *testing.T) Config {
|
|
|
|
return Config{
|
2017-04-26 12:19:36 -07:00
|
|
|
AccessConfig: testAccessConfig(),
|
2016-04-14 17:29:27 -07:00
|
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
|
|
}
|
|
|
|
}
|