source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_container.py @ 16064

Last change on this file since 16064 was 13077, checked in by Henrik Bettermann, 9 years ago

More adjustments for a proper documentation.

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1## $Id: test_container.py 13077 2015-06-19 15:36:21Z henrik $
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"""
19Tests for applicants containers.
20"""
21import unittest
22from zope.interface.verify import verifyClass, verifyObject
23from waeup.kofa.applicants import interfaces
24from waeup.kofa.applicants.container import (
25    ApplicantsContainer,
26    )
27
28class ApplicantsContainerTestCase(unittest.TestCase):
29
30    def test_interfaces(self):
31        # Make sure the correct interfaces are implemented.
32        self.assertTrue(
33            verifyClass(
34                interfaces.IApplicantsContainer, ApplicantsContainer)
35            )
36        self.assertTrue(
37            verifyObject(
38                interfaces.IApplicantsContainer, ApplicantsContainer())
39            )
40        return
41
42def suite():
43    suite = unittest.TestSuite()
44    for test_case in [
45        ApplicantsContainerTestCase,
46        ]:
47        suite.addTests(
48            unittest.TestLoader().loadTestsFromTestCase(test_case))
49    return suite
50
51test_suite = suite
Note: See TracBrowser for help on using the repository browser.