Changeset 4876 for waeup/trunk/src


Ignore:
Timestamp:
22 Jan 2010, 12:51:08 (15 years ago)
Author:
uli
Message:

Update tests: we have loggers now.

File:
1 edited

Legend:

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

    r4866 r4876  
    750750  >>> files = os.listdir(uploadpath)
    751751  >>> for filename in files:
     752  ...   if os.path.isdir(os.path.join(uploadpath, filename)):
     753  ...     continue
    752754  ...   os.unlink(os.path.join(uploadpath, filename))
    753755
    754 The new upload directory is now empty:
     756The new upload directory is now empty, except from the logs dir, which
     757is created automatically:
    755758
    756759  >>> os.listdir(uploadpath)
    757   []
     760  ['logs']
    758761
    759762
     
    796799
    797800  >>> os.listdir(uploadpath)
    798   ['myfaculties_zope.mgr.csv']
     801  ['logs', 'myfaculties_zope.mgr.csv']
    799802
    800803We create and upload also a CSV file containing departments:
Note: See TracChangeset for help on using the changeset viewer.