c1cad8726b
This commit adds an actual public/private key pair for testing since these are now validated.
14 lines
242 B
Go
14 lines
242 B
Go
package triton
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func testConfig(t *testing.T) Config {
|
|
return Config{
|
|
AccessConfig: testAccessConfig(),
|
|
SourceMachineConfig: testSourceMachineConfig(t),
|
|
TargetImageConfig: testTargetImageConfig(t),
|
|
}
|
|
}
|