packer-cn/helper/communicator/config_test.go

29 lines
433 B
Go
Raw Normal View History

2015-06-13 17:50:45 -04:00
package communicator
import (
"testing"
"github.com/mitchellh/packer/template/interpolate"
)
func testConfig() *Config {
return &Config{
SSHUsername: "root",
}
}
func TestConfigType(t *testing.T) {
c := testConfig()
if err := c.Prepare(testContext(t)); len(err) > 0 {
t.Fatalf("bad: %#v", err)
}
if c.Type != "ssh" {
t.Fatal("bad: %#v", c)
}
}
func testContext(t *testing.T) *interpolate.Context {
return nil
}