Changeset 9940 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 11 Feb 2013, 14:36:22 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_catalog.py
r9798 r9940 162 162 assert len(results) == 1 163 163 assert results[0] is self.app['students'][self.student_id] 164 # Attention: A change of the certificate's study mode 165 # is not reflected by the students catalog. The students_catalog 166 # must be reindexed manually. 167 self.certificate.study_mode = u'ug_pt' 168 results = cat.searchResults(current_mode=('ug_ft', 'ug_ft')) 169 assert len(results) == 1 170 results = cat.searchResults(current_mode=('pg_ft', 'pg_ft')) 171 assert len(results) == 0 164 172 return 165 173 -
main/waeup.kofa/trunk/src/waeup/kofa/university/certificate.py
r9842 r9940 16 16 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 17 ## 18 """Kofa certificates 18 """Kofa certificates and certificate courses 19 19 """ 20 20 import grok
Note: See TracChangeset for help on using the changeset viewer.