2016-04-14 17:29:27 -07:00
|
|
|
package triton
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-09-18 16:17:42 +02:00
|
|
|
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),
|
|
|
|
}
|
|
|
|
}
|