[16717] | 1 | ## $Id: test_browser.py 17689 2024-01-31 11:42:09Z henrik $ |
---|
[15614] | 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | import os |
---|
| 19 | import shutil |
---|
| 20 | import tempfile |
---|
| 21 | from StringIO import StringIO |
---|
| 22 | from hurry.workflow.interfaces import IWorkflowState, IWorkflowInfo |
---|
| 23 | from zope.securitypolicy.interfaces import IPrincipalRoleManager |
---|
| 24 | from zope.component.hooks import setSite, clearSite |
---|
| 25 | from zope.component import getUtility, createObject |
---|
| 26 | from zope.interface import verify |
---|
| 27 | from zope.event import notify |
---|
| 28 | from waeup.kofa.authentication import LocalRoleSetEvent |
---|
| 29 | from waeup.kofa.app import University |
---|
| 30 | from waeup.kofa.students.tests.test_browser import StudentsFullSetup |
---|
| 31 | from waeup.kofa.students.accommodation import BedTicket |
---|
| 32 | from waeup.kofa.testing import FunctionalTestCase |
---|
| 33 | from waeup.kofa.interfaces import ( |
---|
| 34 | IExtFileStore, IFileStoreNameChooser) |
---|
| 35 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
[17689] | 36 | from kofacustom.udss.testing import FunctionalLayer |
---|
[15614] | 37 | |
---|
| 38 | |
---|
| 39 | class StudentsContainerUITests(StudentsFullSetup): |
---|
| 40 | # Tests for StudentsContainer class views and pages |
---|
| 41 | |
---|
| 42 | layer = FunctionalLayer |
---|
| 43 | |
---|
| 44 | def test_dummytest(self): |
---|
| 45 | return |
---|