b879ec85cc
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
159 B
Go
11 lines
159 B
Go
package null
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func TestBuilder_implBuilder(t *testing.T) {
|
|
var _ packer.Builder = new(Builder)
|
|
}
|