Changeset 10842 for main/waeup.kofa/trunk/src/waeup/kofa/students/tests
- Timestamp:
- 11 Dec 2013, 13:21:37 (11 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_batching.py
r10296 r10842 276 276 payment.creation_date = datetime.datetime(2012, 4, 1, 13, 12, 1) 277 277 payment.p_id = 'my-id' 278 payment.p_category = u'schoolfee' 278 279 payment.p_state = 'paid' 279 280 payment.ac = u'666' -
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_export.py
r10479 r10842 634 634 'r_code,r_desc,student_id,state,current_session\r\n' 635 635 636 ',0.0,2012-04-01 13:12:01, schoolfee,1,,,,,unpaid,,0.0,,,,,\r\n'636 ',0.0,2012-04-01 13:12:01,,1,,,,,unpaid,,0.0,,,,,\r\n' 637 637 ) 638 638 return … … 901 901 payment.amount_auth = 13.13 902 902 payment.p_state = u'paid' 903 payment.p_category = u'schoolfee' 903 904 self.student['payments']['my-2ndpayment'] = payment 904 905 exporter = StudentPaymentsOverviewExporter() -
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_webservices.py
r10516 r10842 177 177 payment.amount_auth = 12.12 178 178 payment.p_state = u'paid' 179 payment.p_category = u'schoolfee' 179 180 self.student['payments']['my-payment'] = payment 180 181 result = server.get_students_by_course('CRS1') … … 285 286 payment.amount_auth = 12.12 286 287 payment.p_state = u'paid' 288 payment.p_category = u'schoolfee' 287 289 self.student['payments']['my-payment'] = payment 288 290 result = server.get_paid_sessions('123')
Note: See TracChangeset for help on using the changeset viewer.