- Timestamp:
- 26 Oct 2012, 21:49:15 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/tests/test_browser.py
r9393 r9436 27 27 from waeup.kofa.students.tests.test_browser import ( 28 28 StudentsFullSetup, SAMPLE_IMAGE) 29 from waeup.kofa.students.accommodation import BedTicket 29 30 from waeup.kofa.testing import FunctionalTestCase 30 31 from waeup.kofa.interfaces import ( … … 72 73 73 74 layer = FunctionalLayer 75 76 def setUp(self): 77 super(StudentUITests, self).setUp() 78 79 bedticket = BedTicket() 80 bedticket.booking_session = 2004 81 bedticket.bed_type = u'any bed type' 82 bedticket.bed = self.app['hostels']['hall-1']['hall-1_A_101_A'] 83 bedticket.bed_coordinates = u'My bed coordinates' 84 self.student['accommodation'].addBedTicket(bedticket) 74 85 75 86 def test_manage_payments(self): … … 277 288 278 289 def test_student_accommodation(self): 290 del self.student['accommodation']['2004'] 279 291 # Login 280 292 self.browser.open(self.login_path)
Note: See TracChangeset for help on using the changeset viewer.