packer-cn/builder/null/artifact_export_test.go
Florian Noeding b879ec85cc implemented null buider
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.
2014-03-24 11:26:10 +01:00

11 lines
158 B
Go

package null
import (
"github.com/mitchellh/packer/packer"
"testing"
)
func TestNullArtifact(t *testing.T) {
var _ packer.Artifact = new(NullArtifact)
}