From bde4b02d2b960e896de789b7e036e955b3ca47df Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 13 Dec 2013 19:08:27 -0800 Subject: [PATCH] builder/googlecompute: artifact tests --- builder/googlecompute/artifact_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 builder/googlecompute/artifact_test.go diff --git a/builder/googlecompute/artifact_test.go b/builder/googlecompute/artifact_test.go new file mode 100644 index 000000000..a892a3e53 --- /dev/null +++ b/builder/googlecompute/artifact_test.go @@ -0,0 +1,10 @@ +package googlecompute + +import ( + "github.com/mitchellh/packer/packer" + "testing" +) + +func TestArtifact_impl(t *testing.T) { + var _ packer.Artifact = new(Artifact) +}