- Timestamp:
- 16 Jun 2014, 08:29:22 (11 years ago)
- Location:
- main/kofacustom.sampleuni/trunk/src/kofacustom/sampleuni
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.sampleuni/trunk/src/kofacustom/sampleuni/browser/pages.py
r10765 r11687 21 21 LoginPage, CertificatePage, CertificateManageFormPage) 22 22 from waeup.kofa.university.interfaces import ICertificate 23 from kofacustom.s keleton.interfaces import (23 from kofacustom.sampleuni.interfaces import ( 24 24 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 25 25 -
main/kofacustom.sampleuni/trunk/src/kofacustom/sampleuni/browser/tests.py
r11272 r11687 22 22 from zope.security.interfaces import Unauthorized 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom.s keleton.testing import FunctionalLayer24 from kofacustom.sampleuni.testing import FunctionalLayer 25 25 from waeup.kofa.app import University 26 26 … … 48 48 clearSite() 49 49 shutil.rmtree(self.dc_root) 50 51 def test_access_live_url(self):52 # We can't access the system with basic authentication53 self.browser.addHeader('Authorization', 'Basic grok:grok')54 self.assertRaises(55 Unauthorized, self.browser.open, 'https://skeleton-kofa.waeup.org')56 return
Note: See TracChangeset for help on using the changeset viewer.