packer-cn/builder/amazon/chroot/step_mount_device_test.go

16 lines
312 B
Go
Raw Normal View History

package chroot
2019-10-24 00:21:08 -04:00
import (
"testing"
"github.com/hashicorp/packer/packer-plugin-sdk/chroot"
2019-10-24 00:21:08 -04:00
)
func TestMountDeviceCleanupFunc_ImplementsCleanupFunc(t *testing.T) {
var raw interface{}
raw = new(StepMountDevice)
2019-10-24 00:21:08 -04:00
if _, ok := raw.(chroot.Cleanup); !ok {
t.Fatalf("cleanup func should be a CleanupFunc")
}
}