Changeset 15416 for main/waeup.kofa/trunk/src/waeup/kofa/doctests
- Timestamp:
- 21 May 2019, 08:02:51 (6 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/doctests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/doctests/batchprocessing_browser.txt
r13872 r15416 644 644 645 645 >>> sorted(os.listdir(dc_path)) 646 ['deleted', 'finished', ' logs', 'unfinished', 'users_zope.mgr.create.pending.csv']646 ['deleted', 'finished', 'graduated', 'logs', 'unfinished', 'users_zope.mgr.create.pending.csv'] 647 647 648 648 >>> os.listdir(dc_path + '/unfinished') -
main/waeup.kofa/trunk/src/waeup/kofa/doctests/datacenter.txt
r12948 r15416 23 23 '/tmp/tmp...' 24 24 25 Beside other things it provides a locationto put data of deleted25 Beside other things it provides two locations to put data of deleted 26 26 items into: 27 27 … … 29 29 >>> del_path = mydatacenter.deleted_path 30 30 >>> os.path.isdir(del_path) 31 True 32 >>> grad_path = mydatacenter.graduated_path 33 >>> os.path.isdir(grad_path) 31 34 True 32 35 … … 163 166 ... pending_src, mode='create') 164 167 >>> sorted(os.listdir(dc_root)) 165 ['deleted', 'finished', ' logs', 'unfinished']168 ['deleted', 'finished', 'graduated', 'logs', 'unfinished'] 166 169 167 170 >>> sorted(os.listdir(fin_dir)) … … 188 191 ... pending_src, mode='create') 189 192 >>> sorted(os.listdir(dc_root)) 190 ['deleted', 'finished', ' logs', 'mysource.create.pending.csv', 'unfinished']193 ['deleted', 'finished', 'graduated', 'logs', 'mysource.create.pending.csv', 'unfinished'] 191 194 192 195 >>> sorted(os.listdir(fin_dir)) … … 209 212 210 213 >>> sorted(os.listdir(dc_root)) 211 ['deleted', 'finished', ' logs', 'unfinished']214 ['deleted', 'finished', 'graduated', 'logs', 'unfinished'] 212 215 213 216 >>> sorted(os.listdir(fin_dir)) … … 245 248 246 249 >>> sorted(os.listdir(dc_root)) 247 ['deleted', 'finished', ' logs', 'mysource.create.pending.csv', 'unfinished']250 ['deleted', 'finished', 'graduated', 'logs', 'mysource.create.pending.csv', 'unfinished'] 248 251 249 252 >>> sorted(os.listdir(fin_dir)) … … 261 264 262 265 >>> sorted(os.listdir(dc_root)) 263 ['deleted', 'finished', ' logs', 'unfinished']266 ['deleted', 'finished', 'graduated', 'logs', 'unfinished'] 264 267 265 268 >>> sorted(os.listdir(fin_dir)) -
main/waeup.kofa/trunk/src/waeup/kofa/doctests/pages.txt
r15286 r15416 1220 1220 1221 1221 >>> sorted(os.listdir(uploadpath)) 1222 ['deleted', 'finished', ' logs', 'unfinished']1222 ['deleted', 'finished', 'graduated', 'logs', 'unfinished'] 1223 1223 1224 1224 … … 1261 1261 1262 1262 >>> sorted(os.listdir(uploadpath)) 1263 ['deleted', 'finished', ' logs', 'myfaculties_zope.mgr.csv', 'unfinished']1263 ['deleted', 'finished', 'graduated', 'logs', 'myfaculties_zope.mgr.csv', 'unfinished'] 1264 1264 1265 1265 We create and upload also a CSV file containing departments:
Note: See TracChangeset for help on using the changeset viewer.