mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-14 06:32:16 -04:00
11 lines
161 B
Go
11 lines
161 B
Go
|
|
package docker
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/mitchellh/packer/packer"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestBuilder_implBuilder(t *testing.T) {
|
||
|
|
var _ packer.Builder = new(Builder)
|
||
|
|
}
|