12 lines
159 B
Go
12 lines
159 B
Go
package file
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestNullArtifact(t *testing.T) {
|
|
var _ packer.Artifact = new(FileArtifact)
|
|
}
|