[7195] | 1 | ## $Id: test_coursescontainer.py 7811 2012-03-08 19:00:51Z uli $ |
---|
| 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 | |
---|
[6568] | 19 | # Test course containers |
---|
| 20 | |
---|
| 21 | import unittest |
---|
| 22 | from zope.interface.verify import verifyClass, verifyObject |
---|
[7811] | 23 | from waeup.kofa.university.interfaces import ICoursesContainer |
---|
| 24 | from waeup.kofa.university import CoursesContainer, Course |
---|
[6568] | 25 | |
---|
[7333] | 26 | class CoursesContainerTests(unittest.TestCase): |
---|
[6568] | 27 | |
---|
| 28 | def test_ifaces(self): |
---|
[7333] | 29 | container = CoursesContainer() |
---|
| 30 | self.assertTrue(verifyClass(ICoursesContainer, CoursesContainer)) |
---|
| 31 | self.assertTrue(verifyObject(ICoursesContainer, container)) |
---|
[6568] | 32 | |
---|
| 33 | def test_setitem_name_ne_code(self): |
---|
| 34 | # If we add a course under a wrong name that will give an error |
---|
[7333] | 35 | container = CoursesContainer() |
---|
[6568] | 36 | course = Course(code='MYCOURSE') |
---|
| 37 | self.assertRaises( |
---|
| 38 | ValueError, |
---|
| 39 | container.__setitem__, 'NOTMYCOURSE', course) |
---|