The null builder is not really a bulider, it just setups a SSH connection and runs the provisioners. It can be used to debug provisioners without incurring high wait times. It does not create any kind of image or artifact.
11 lines
158 B
Go
11 lines
158 B
Go
package null
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func TestNullArtifact(t *testing.T) {
|
|
var _ packer.Artifact = new(NullArtifact)
|
|
}
|