mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 01:40:26 -05:00
11 lines
241 B
Go
11 lines
241 B
Go
package chroot
|
|
|
|
import "testing"
|
|
|
|
func TestMountExtraCleanupFunc_ImplementsCleanupFunc(t *testing.T) {
|
|
var raw interface{}
|
|
raw = new(StepMountExtra)
|
|
if _, ok := raw.(Cleanup); !ok {
|
|
t.Fatalf("cleanup func should be a CleanupFunc")
|
|
}
|
|
}
|