2016-04-14 20:29:27 -04:00
|
|
|
package triton
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-09-18 10:17:42 -04:00
|
|
|
func testConfig(t *testing.T) *Config {
|
|
|
|
return &Config{
|
2017-04-26 15:19:36 -04:00
|
|
|
AccessConfig: testAccessConfig(),
|
2016-04-14 20:29:27 -04:00
|
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
|
|
}
|
|
|
|
}
|