Changeset 10098 for main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests
- Timestamp:
- 24 Apr 2013, 05:52:18 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py
r10097 r10098 222 222 def test_hide_container(self): 223 223 self.browser.open(self.root_path) 224 self.assertTrue( 225 '<a href="http://localhost/app/applicants/app2011">' 226 'This is the app2011 container</a>' in self.browser.contents) 227 self.app['applicants']['app2011'].hidden = True 228 self.browser.open(self.root_path) 229 # Anonymous users can't see hidden containers 224 230 self.assertFalse( 225 231 '<a href="http://localhost/app/applicants/app2011">' 226 232 'This is the app2011 container</a>' in self.browser.contents) 227 self. app['applicants']['app2011'].hidden = False233 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') 228 234 self.browser.open(self.root_path) 229 235 self.assertTrue( -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_export.py
r10097 r10098 76 76 'basic,0.0,dp2012,' 77 77 '"Some Description\nwith linebreak\n<<de>>man spriht deutsh",' 78 '2012-01-31 23:00:00+00:00, 1,,app,2012-01-01 12:00:00+00:00,1,'78 '2012-01-31 23:00:00+00:00,0,,app,2012-01-01 12:00:00+00:00,1,' 79 79 'General Studies 2012/13,2012\r\n' 80 80 )
Note: See TracChangeset for help on using the changeset viewer.