github.com/phobos182/packer@v0.2.3-0.20130819023704-c84d2aeffc68/builder/amazon/chroot/step_mount_device_test.go (about) 1 package chroot 2 3 import "testing" 4 5 func TestMountDeviceCleanupFunc_ImplementsCleanupFunc(t *testing.T) { 6 var raw interface{} 7 raw = new(StepMountDevice) 8 if _, ok := raw.(Cleanup); !ok { 9 t.Fatalf("cleanup func should be a CleanupFunc") 10 } 11 }