source: main/waeup.kofa/trunk/src/waeup/kofa/university/tests/test_coursescontainer.py @ 8925

Last change on this file since 8925 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
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
19# Test course containers
20
21import unittest
22from zope.interface.verify import verifyClass, verifyObject
23from waeup.kofa.university.interfaces import ICoursesContainer
24from waeup.kofa.university import CoursesContainer, Course
25
26class CoursesContainerTests(unittest.TestCase):
27
28    def test_ifaces(self):
29        container = CoursesContainer()
30        self.assertTrue(verifyClass(ICoursesContainer, CoursesContainer))
31        self.assertTrue(verifyObject(ICoursesContainer, container))
32
33    def test_setitem_name_ne_code(self):
34        # If we add a course under a wrong name that will give an error
35        container = CoursesContainer()
36        course = Course(code='MYCOURSE')
37        self.assertRaises(
38            ValueError,
39            container.__setitem__, 'NOTMYCOURSE', course)
Note: See TracBrowser for help on using the repository browser.