- Timestamp:
- 26 Apr 2012, 08:05:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_export.py
r8200 r8282 141 141 # into two parts. 142 142 self.assertTrue( 143 'app licant_id,application_date,application_number,course1,course2,'143 'app_state,applicant_id,application_date,application_number,course1,course2,' 144 144 'course_admitted,date_of_birth,display_fullname,email,firstname,' 145 145 'history,lastname,locked,middlename,notice,password,phone,' 146 'reg_number,screening_score,screening_venue,sex, state,'146 'reg_number,screening_score,screening_venue,sex,' 147 147 'student_id\r\n' 148 ' dp2011_654321,,654321,,,,,Anna Tester,,Anna,'148 'initialized,dp2011_654321,,654321,,,,,Anna Tester,,Anna,' 149 149 in result) 150 150 self.assertTrue( 151 151 'Application initialized by system\'],Tester,' 152 '0,,,,,,,,, initialized,\r\n'152 '0,,,,,,,,,\r\n' 153 153 in result) 154 154 return … … 164 164 # history dict. We skip the date and split the comparison 165 165 # into two parts. 166 self.assertTrue( 167 'applicant_id,application_date,application_number,course1,course2,' 166 print result 167 self.assertTrue( 168 'app_state,applicant_id,application_date,application_number,course1,course2,' 168 169 'course_admitted,date_of_birth,display_fullname,email,firstname,' 169 170 'history,lastname,locked,middlename,notice,password,phone,' 170 'reg_number,screening_score,screening_venue,sex, state,'171 'reg_number,screening_score,screening_venue,sex,' 171 172 'student_id\r\n' 172 ' dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'173 'initialized,dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,' 173 174 'Anna M. Tester,anna@sample.com,Anna,' 174 175 in result) … … 176 177 'Application initialized by system\'],' 177 178 'Tester,0,M.,"Some notice\nin lines.",any password,' 178 '+234-123-12345,123456,98,Exam Room,f, initialized,\r\n'179 '+234-123-12345,123456,98,Exam Room,f,\r\n' 179 180 in result) 180 181 … … 189 190 result = open(self.outfile, 'rb').read() 190 191 self.assertTrue( 191 'app licant_id,application_date,application_number,course1,course2,'192 'app_state,applicant_id,application_date,application_number,course1,course2,' 192 193 'course_admitted,date_of_birth,display_fullname,email,firstname,' 193 194 'history,lastname,locked,middlename,notice,password,phone,' 194 'reg_number,screening_score,screening_venue,sex, state,'195 'reg_number,screening_score,screening_venue,sex,' 195 196 'student_id\r\n' 196 ' dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'197 'initialized,dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,' 197 198 'Anna M. Tester,anna@sample.com,Anna,' 198 199 in result) … … 200 201 'Application initialized by system\'],' 201 202 'Tester,0,M.,"Some notice\nin lines.",any password,' 202 '+234-123-12345,123456,98,Exam Room,f, initialized,\r\n'203 in result) 204 return 203 '+234-123-12345,123456,98,Exam Room,f,\r\n' 204 in result) 205 return
Note: See TracChangeset for help on using the changeset viewer.