- Timestamp:
- 14 Dec 2014, 21:48:41 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_export.py
r11832 r12234 7 7 from kofacustom.pcn.utils.utils import CustomKofaUtils 8 8 from kofacustom.pcn.students.export import ( 9 CustomStudent sExporter, CustomStudentPaymentsExporter)9 CustomStudentExporter, CustomStudentPaymentsExporter) 10 10 from kofacustom.pcn.testing import FunctionalLayer 11 11 12 12 13 class CustomStudent sExporterTest(StudentImportExportSetup):13 class CustomStudentExporterTest(StudentImportExportSetup): 14 14 15 15 layer = FunctionalLayer 16 16 17 17 def setUp(self): 18 super(CustomStudent sExporterTest, self).setUp()18 super(CustomStudentExporterTest, self).setUp() 19 19 self.setup_for_export() 20 20 result_entry = ResultEntry( … … 32 32 def test_ifaces(self): 33 33 # make sure we fullfill interface contracts 34 obj = CustomStudent sExporter()34 obj = CustomStudentExporter() 35 35 verifyObject(ICSVExporter, obj) 36 verifyClass(ICSVExporter, CustomStudent sExporter)36 verifyClass(ICSVExporter, CustomStudentExporter) 37 37 return 38 38 … … 42 42 # set values we can expect in export file 43 43 self.setup_student(self.student) 44 exporter = CustomStudent sExporter()44 exporter = CustomStudentExporter() 45 45 exporter.export_all(self.app, self.outfile) 46 46 result = open(self.outfile, 'rb').read() … … 90 90 'p_item,p_level,p_session,p_state,payment_date,r_amount_approved,' 91 91 'r_code,r_desc,student_id,state,current_session\r\n666,' 92 '12.12,2012-04-01 13:12:01 ,schoolfee,1,my-id,p-item,'93 '100,2012,paid,2012-04-01 14:12:01 ,12.12,r-code,,'92 '12.12,2012-04-01 13:12:01#,schoolfee,1,my-id,p-item,' 93 '100,2012,paid,2012-04-01 14:12:01#,12.12,r-code,,' 94 94 'A111111,created,2012\r\n', 95 95 result
Note: See TracChangeset for help on using the changeset viewer.