source: main/waeup.ikoba/trunk/src/waeup/ikoba/tests/test_configuration.py

Last change on this file was 12186, checked in by Henrik Bettermann, 10 years ago

Remove session configuration. We do not have sessions in Ikoba.

  • Property svn:keywords set to Id
File size: 1.5 KB
RevLine 
[7193]1## $Id: test_configuration.py 12186 2014-12-09 16:45:52Z henrik $
2##
[6919]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.
[7193]8##
[6919]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.
[7193]13##
[6919]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"""Tests for configuration containers and related.
19"""
20from zope.component.interfaces import IFactory
21from zope.interface import verify
[11949]22from waeup.ikoba.testing import FunctionalLayer, FunctionalTestCase
[12186]23from waeup.ikoba.configuration import ConfigurationContainer
24from waeup.ikoba.interfaces import IConfigurationContainer
[6919]25
26class ConfigurationTest(FunctionalTestCase):
27
28    layer = FunctionalLayer
29
30    def setUp(self):
31        super(ConfigurationTest, self).setUp()
32        self.confcontainer = ConfigurationContainer()
33        return
34
35    def tearDown(self):
36        super(ConfigurationTest, self).tearDown()
37        return
38
39    def test_interfaces(self):
40        verify.verifyClass(IConfigurationContainer, ConfigurationContainer)
41        verify.verifyObject(IConfigurationContainer, self.confcontainer)
Note: See TracBrowser for help on using the repository browser.