mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-29 18:20:05 -04:00
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)
|
||
|
|
}
|