- Timestamp:
- 13 Sep 2011, 09:05:13 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/university
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/courserefs.txt
r6244 r6737 4 4 Courses are referred to by certificate courses. 5 5 6 :Test-Layer: functional7 8 6 We can be sure, that when removing courses or referrers of them, 9 other data will be handled in a way we expect. That is, 7 other data will be handled in a way we expect. That is, 10 8 11 9 * when we remove a course, we want all referrers to it be removed as -
main/waeup.sirp/trunk/src/waeup/sirp/university/tests/test_university.py
r6573 r6737 1 1 # Test the public API part of the university subpackage 2 2 import unittest 3 from waeup.sirp. university import *3 from waeup.sirp.testing import get_doctest_suite 4 4 5 5 class UniversitySubpackageTests(unittest.TestCase): … … 11 11 self.assertTrue('Faculty' in names) 12 12 self.assertTrue('FacultyContainer' in names) 13 14 def test_suite(): 15 # collect doctests for university subpackage 16 suite = get_doctest_suite(['university/courserefs.txt',]) 17 return suite
Note: See TracChangeset for help on using the changeset viewer.