Changeset 11237 for main/waeup.imostate/trunk/src/waeup/imostate/applicants
- Timestamp:
- 22 Feb 2014, 14:11:26 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.imostate/trunk/src/waeup/imostate/applicants/tests/test_browser.py
r10382 r11237 1 1 ## $Id$ 2 2 ## 3 ## Copyright (C) 201 1Uli Fouquet & Henrik Bettermann3 ## Copyright (C) 2014 Uli Fouquet & Henrik Bettermann 4 4 ## This program is free software; you can redistribute it and/or modify 5 5 ## it under the terms of the GNU General Public License as published by … … 28 28 from zope.component import createObject, getUtility 29 29 from waeup.kofa.applicants.container import ApplicantsContainer 30 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 30 from waeup.kofa.applicants.tests.test_browser import ( 31 ApplicantsFullSetup, container_name_1, 32 ) 31 33 from waeup.kofa.interfaces import ( 32 34 IExtFileStore, IFileStoreNameChooser) … … 152 154 logcontent = open(logfile).read() 153 155 self.assertTrue( 154 'zope.mgr - waeup.imostate.applicants.browser.CustomApplicantManageFormPage' 156 'zope.mgr - ' 157 'waeup.imostate.applicants.browser.CustomApplicantManageFormPage' 155 158 ' - %s - saved: extraform' 156 159 % (self.applicant.applicant_id) 157 160 in logcontent) 158 161 # When an applicant is removed, also the pdf files are gone. 159 del self.app['applicants']['app2011'][self.applicant.application_number] 162 del self.app['applicants'][container_name_1][ 163 self.applicant.application_number] 160 164 fd = storage.getFile(file_id) 161 165 self.assertTrue(fd is None)
Note: See TracChangeset for help on using the changeset viewer.