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