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