mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
13 lines
244 B
Go
13 lines
244 B
Go
package triton
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func testConfig(t *testing.T) *Config {
|
|
return &Config{
|
|
AccessConfig: testAccessConfig(),
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
}
|
|
}
|