mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 12:02:14 -05:00
This commit adds an actual public/private key pair for testing since these are now validated.
13 lines
242 B
Go
13 lines
242 B
Go
package triton
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func testConfig(t *testing.T) Config {
|
|
return Config{
|
|
AccessConfig: testAccessConfig(),
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
}
|
|
}
|