[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 | """ |
---|
| 20 | from zope.component.interfaces import IFactory |
---|
| 21 | from zope.interface import verify |
---|
[11949] | 22 | from waeup.ikoba.testing import FunctionalLayer, FunctionalTestCase |
---|
[12186] | 23 | from waeup.ikoba.configuration import ConfigurationContainer |
---|
| 24 | from waeup.ikoba.interfaces import IConfigurationContainer |
---|
[6919] | 25 | |
---|
| 26 | class 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) |
---|