mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
11 lines
204 B
Go
11 lines
204 B
Go
package digitaloceanimport
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestPostProcessor_ImplementsPostProcessor(t *testing.T) {
|
|
var _ packer.PostProcessor = new(PostProcessor)
|
|
}
|