Changeset 15
- Timestamp:
- 05/18/06 10:51:41 (6 years ago)
- Files:
-
- branches/mk/tests/data/module1.py (modified) (1 diff)
- branches/mk/tests/test_index_url_download.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mk/tests/data/module1.py
r8 r15 10 10 def __init__(self): 11 11 """ 12 Methods starting with __ are not kipped12 Methods starting with __ are not skipped 13 13 """ 14 14 pass branches/mk/tests/test_index_url_download.py
r8 r15 25 25 except CheesecakeError, e: 26 26 # it's OK if we get "connection refused" sometimes 27 msg = "[Errno socket error] (111, 'Connection refused') "27 msg = "[Errno socket error] (111, 'Connection refused')\n" 28 28 msg += pad_msg("CHEESECAKE INDEX", 0) 29 if str(e) == msg: 30 pass 29 assert str(e) == msg 31 30 32 31 def test_index_url_download_invalid_url(self):
