- Timestamp:
- 6 Jan 2017, 22:42:07 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_level_report.py
r14370 r14374 36 36 self.student['studycourse']['100']['Course1'].ca = 0 37 37 report = CustomLevelReport('fac1', 'dep1', 2010, 100) 38 result = report.create_pdf( )38 result = report.create_pdf('JOB_ID') 39 39 self.assertTrue(result.startswith('%PDF-')) 40 40 path = os.path.join(samples_dir(), 'level_report.pdf') -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_raw_score_report.py
r14132 r14374 67 67 self.student['studycourse']['200']['Course2'] = ticket 68 68 report = RawScoreReport('fac1', 'dep1', 2011, 200) 69 result = report.create_pdf( )69 result = report.create_pdf('JOB_ID') 70 70 self.assertTrue(result.startswith('%PDF-')) 71 71 path = os.path.join(samples_dir(), 'raw_score_report.pdf') -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_student_level_statistics.py
r13963 r14374 102 102 self.student['studycourse'].current_level = 220 103 103 report = StudentLevelStatisticsReport(2010, 'Undergraduate Full-Time', 'depcode') 104 result = report.create_pdf( )104 result = report.create_pdf('JOB_ID') 105 105 self.assertTrue(result.startswith('%PDF-')) 106 106 path = os.path.join(samples_dir(), 'student_level_statistics.pdf')
Note: See TracChangeset for help on using the changeset viewer.