mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
11 lines
227 B
Go
11 lines
227 B
Go
package dockersave
|
|
|
|
import (
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
func TestPostProcessor_ImplementsPostProcessor(t *testing.T) {
|
|
var _ packersdk.PostProcessor = new(PostProcessor)
|
|
}
|