- Timestamp:
- 17 Jan 2016, 08:47:11 (9 years ago)
- Location:
- main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/students
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/students/payments.py
r10765 r13629 23 23 from zope.interface import implementedBy 24 24 from waeup.kofa.students.interfaces import IStudentNavigation 25 from waeup.kofa.students.payments import (26 StudentOnlinePayment, StudentOnlinePaymentFactory)27 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom.nigeria.students.payments import ( 27 NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) 28 28 from kofacustom.skeleton.students.interfaces import ICustomStudentOnlinePayment 29 29 30 class CustomStudentOnlinePayment( StudentOnlinePayment):30 class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): 31 31 """This is a custom online payment for students. 32 32 … … 50 50 CustomStudentOnlinePayment, omit=['display_item']) 51 51 52 class CustomStudentOnlinePaymentFactory( StudentOnlinePaymentFactory):52 class CustomStudentOnlinePaymentFactory(NigeriaStudentOnlinePaymentFactory): 53 53 """A factory for student online payments. 54 54 """ -
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/students/tests/test_browser.py
r10765 r13629 36 36 from kofacustom.skeleton.testing import FunctionalLayer 37 37 38 39 class StudentsContainerUITests(StudentsFullSetup): 40 # Tests for StudentsContainer class views and pages 41 42 layer = FunctionalLayer 43 44 def test_dummytest(self): 45 return -
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/students/tests/test_export.py
r13115 r13629 49 49 'clr_code,date_of_birth,def_adm,disabled,email,emp2_end,' 50 50 'emp2_position,emp2_reason,emp2_start,emp_end,emp_position,' 51 'emp_reason,emp_start,employer,employer2,firstname,former_matric,' 51 'emp_reason,emp_start,employer,employer2,' 52 'financial_clearance_date,financially_cleared_by,' 53 'firstname,former_matric,' 52 54 'fst_sit_date,fst_sit_fname,fst_sit_no,fst_sit_results,' 53 55 'fst_sit_type,hq2_degree,hq2_disc,hq2_matric_no,hq2_school,' … … 63 65 'current_level,current_session\r\nmy adm code,,,,' 64 66 '"[(\'printing_craft_practice\', \'A1\')]",my clr code,1981-02-04#,,,' 65 'anna@sample.com,,,,,,,,,,, Anna,,,,,"[(\'printing_craft_practice\', \'A1\')]"'67 'anna@sample.com,,,,,,,,,,,,,Anna,,,,,"[(\'printing_craft_practice\', \'A1\')]"' 66 68 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,' 67 69 '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,123,,,,,'
Note: See TracChangeset for help on using the changeset viewer.