Changeset 7372 for main/waeup.sirp/trunk/src/waeup/sirp
- Timestamp:
- 18 Dec 2011, 10:50:21 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser.txt
r7321 r7372 284 284 <td>APP-1-...</td> 285 285 <td>initialized</td> 286 <td>... - AC initialized by zope.mgr</td>286 <td>... - AC initialized by Manager</td> 287 287 ... 288 288 … … 303 303 <td>APP-1-...</td> 304 304 <td>initialized</td> 305 <td>... - AC initialized by zope.mgr</td>305 <td>... - AC initialized by Manager</td> 306 306 ... 307 307 … … 322 322 <td>APP-1-<10-DIGITS></td> 323 323 <td>initialized</td> 324 <td>... - AC initialized by zope.mgr</td>324 <td>... - AC initialized by Manager</td> 325 325 ... 326 326 -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_browser.py
r7356 r7372 320 320 self.browser.getControl("Save").click() 321 321 self.assertMatches('...Form has been saved...', self.browser.contents) 322 self.assertMatches('...Application started by zope.mgr...', self.browser.contents)322 self.assertMatches('...Application started by Manager...', self.browser.contents) 323 323 self.browser.open(self.view_path) 324 324 self.assertEqual(self.browser.headers['Status'], '200 Ok') -
main/waeup.sirp/trunk/src/waeup/sirp/students/tests/test_browser.py
r7364 r7372 404 404 self.assertEqual(self.browser.headers['Status'], '200 Ok') 405 405 self.assertEqual(self.browser.url, self.history_student_path) 406 self.assertMatches('...Student admitted by zope.mgr...',406 self.assertMatches('...Student admitted by Manager...', 407 407 self.browser.contents) 408 408 # Only the Application Slip does not exist -
main/waeup.sirp/trunk/src/waeup/sirp/tests/test_objecthistory.py
r7321 r7372 89 89 hist.addMessage('blah') 90 90 result = ''.join(hist.messages) 91 self.assertMatches('<YYYY-MM-DD hh:mm:ss> - blah by bob', result)91 self.assertMatches('<YYYY-MM-DD hh:mm:ss> - blah by Bob', result) 92 92 93 93 def test_messages(self):
Note: See TracChangeset for help on using the changeset viewer.