when( unsavedAssetItem.getFormat() ).thenReturn( AssetFormats.DECISION_SPREADSHEET_XLS );
when( unsavedAssetItem.getBinaryContentAttachment() ).thenReturn( in );
setUpAssetItemIterators( AssetFormats.DECISION_SPREADSHEET_XLS );
runValidate( new DSLRuleContentHandler() );
verify( unsavedAssetItem ).getBinaryContentAttachment();
verify( savedAssetItem,
never() ).getBinaryContentAttachment();
}