- Timestamp:
- 6 Jan 2017, 22:40:30 (8 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students/reports/tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/tests/test_level_report.py
r14372 r14373 63 63 self.student['studycourse']['100']['Course3'] = ticket 64 64 report = LevelReport('fac1', 'dep1', 2010, 100) 65 result = report.create_pdf( )65 result = report.create_pdf('JOB_ID') 66 66 self.assertTrue(result.startswith('%PDF-')) 67 67 path = os.path.join(samples_dir(), 'level_report.pdf') -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/tests/test_session_results_presentation.py
r12898 r14373 63 63 def test_create_pdf(self): 64 64 report = SessionResultsPresentation('fac1', 'dep1', 2010, 100) 65 result = report.create_pdf( )65 result = report.create_pdf('JOB_ID') 66 66 self.assertTrue(result.startswith('%PDF-')) 67 67 path = os.path.join(samples_dir(), 'session_results_presentation.pdf') … … 81 81 self.student['studycourse']['620']['Course2'] = ticket 82 82 report = SessionResultsPresentation('fac1', 'dep1', 2013, 620) 83 result = report.create_pdf( )83 result = report.create_pdf('JOB_ID') 84 84 self.assertTrue(result.startswith('%PDF-')) 85 85 path = os.path.join(samples_dir(), 'session_results_presentation_620.pdf') … … 102 102 self.student['studycourse']['200']['Course2'] = ticket 103 103 report = SessionResultsPresentation('fac1', 'dep1', 2010, 0) 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(), 'session_results_presentation_erroneous.pdf') -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/tests/test_student_payment_statistics.py
r12897 r14373 56 56 report = StudentPaymentStatisticsReport( 57 57 2010, 'Undergraduate Full-Time', 0, 'faccode') 58 result = report.create_pdf( )58 result = report.create_pdf('JOB_ID') 59 59 self.assertTrue(result.startswith('%PDF-')) 60 60 path = os.path.join(samples_dir(), 'student_payment_statistics.pdf') -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/tests/test_student_statistics.py
r14169 r14373 120 120 report = StudentStatisticsReport( 121 121 2010, 'Undergraduate Full-Time', 0, 'faccode') 122 result = report.create_pdf( )122 result = report.create_pdf('JOB_ID') 123 123 self.assertTrue(result.startswith('%PDF-')) 124 124 path = os.path.join(samples_dir(), 'student_statistics.pdf') … … 131 131 report = StudentStatisticsReport( 132 132 2010, 'Undergraduate Full-Time', 100, 'faccode') 133 result = report.create_pdf( )133 result = report.create_pdf('JOB_ID') 134 134 self.assertTrue(result.startswith('%PDF-')) 135 135 path = os.path.join(samples_dir(), 'student_statistics_100.pdf')
Note: See TracChangeset for help on using the changeset viewer.