Ignore:
Timestamp:
27 Aug 2011, 13:19:07 (13 years ago)
Author:
Henrik Bettermann
Message:

Add logger, student workflow and student workflow history.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/students/tests/test_browser.py

    r6635 r6637  
    9191        self.payments_student_path = self.student_path + '/payments'
    9292        self.accommodation_student_path = self.student_path + '/accommodation'
     93        self.history_student_path = self.student_path + '/history'
    9394
    9495        # Populate university
     
    231232        self.assertEqual(self.browser.url, self.accommodation_student_path)
    232233
     234        self.browser.open(self.student_path)
     235        self.browser.getLink("History").click()
     236        self.assertEqual(self.browser.headers['Status'], '200 Ok')
     237        self.assertEqual(self.browser.url, self.history_student_path)
     238        self.assertMatches('...Student object created by system...', self.browser.contents)
     239
    233240        return
Note: See TracChangeset for help on using the changeset viewer.