Merge pull request #3668 from epowell/master

Add new interface method to the 'none' communicator
This commit is contained in:
Chris Bednarski 2016-07-06 17:25:21 -07:00 committed by GitHub
commit ac78b57ed0
2 changed files with 20 additions and 0 deletions

View File

@ -38,3 +38,7 @@ func (c *comm) UploadDir(dst string, src string, excl []string) error {
func (c *comm) Download(path string, output io.Writer) error {
return errors.New("Download is not implemented when communicator = 'none'")
}
func (c *comm) DownloadDir(dst string, src string, excl []string) error {
return errors.New("DownloadDir is not implemented when communicator = 'none'")
}

View File

@ -0,0 +1,16 @@
package none
import (
"testing"
"github.com/mitchellh/packer/packer"
)
func TestCommIsCommunicator(t *testing.T) {
var raw interface{}
raw = &comm{}
if _, ok := raw.(packer.Communicator); !ok {
t.Fatalf("comm must be a communicator")
}
}