Changeset 6751
- Timestamp:
- 14 Sep 2011, 00:31:55 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/tests/test_student.py
r6635 r6751 18 18 import unittest 19 19 from StringIO import StringIO 20 from zope.app.testing.functional import FunctionalTestCase21 20 from zope.component import ( 22 21 provideAdapter, adapts, getGlobalSiteManager, provideUtility) … … 36 35 IStudent, IStudentStudyCourse, IStudentPayments, IStudentAccommodation, 37 36 ) 38 from waeup.sirp.testing import FunctionalLayer 37 from waeup.sirp.testing import FunctionalLayer, FunctionalTestCase 39 38 40 39 class StudentTest(FunctionalTestCase): … … 70 69 71 70 def setUp(self): 71 super(StudentFactoryTest, self).setUp() 72 72 self.factory = StudentFactory() 73 73 74 74 def tearDown(self): 75 pass75 super(StudentFactoryTest, self).tearDown() 76 76 77 77 def test_interfaces(self):
Note: See TracChangeset for help on using the changeset viewer.