Changeset 4893 for waeup/trunk


Ignore:
Timestamp:
25 Jan 2010, 08:32:19 (15 years ago)
Author:
uli
Message:

Update tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/trunk/src/waeup/browser.txt

    r4876 r4893  
    754754  ...   os.unlink(os.path.join(uploadpath, filename))
    755755
    756 The new upload directory is now empty, except from the logs dir, which
    757 is created automatically:
    758 
    759   >>> os.listdir(uploadpath)
    760   ['logs']
     756The new upload directory is now empty, except from the logs and other
     757standard dirs, which are created automatically:
     758
     759  >>> sorted(os.listdir(uploadpath))
     760  ['finished', 'logs', 'pending']
    761761
    762762
     
    798798The file was indeed uploaded, with the current userid inserted:
    799799
    800   >>> os.listdir(uploadpath)
    801   ['logs', 'myfaculties_zope.mgr.csv']
     800  >>> sorted(os.listdir(uploadpath))
     801  ['finished', 'logs', 'myfaculties_zope.mgr.csv', 'pending']
    802802
    803803We create and upload also a CSV file containing departments:
Note: See TracChangeset for help on using the changeset viewer.