Ignore:
Timestamp:
28 Mar 2011, 14:06:20 (13 years ago)
Author:
uli
Message:

Remove tests that do not belong to jambtables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/jambtables/tests/test_container.py

    r5880 r5883  
    2626from zope.interface.verify import verifyClass, verifyObject
    2727from waeup.sirp.applicants import interfaces
    28 from waeup.sirp.applicants.container import (
    29     ApplicantsContainer, JAMBBasedApplicantsContainer,
     28from waeup.sirp.applicants.jambtables.container import (
     29    JAMBBasedApplicantsContainer,
    3030    )
    31 
    32 class ApplicantsContainerTestCase(unittest.TestCase):
    33 
    34     def test_interfaces(self):
    35         # Make sure the correct interfaces are implemented.
    36         self.assertTrue(
    37             verifyClass(
    38                 interfaces.IApplicantsContainer, ApplicantsContainer)
    39             )
    40         self.assertTrue(
    41             verifyObject(
    42                 interfaces.IApplicantsContainer, ApplicantsContainer())
    43             )
    44         return
    4531
    4632class JAMBBasedApplicantsContainerTestCase(unittest.TestCase):
     
    6147    suite = unittest.TestSuite()
    6248    for test_case in [
    63         ApplicantsContainerTestCase,
    6449        JAMBBasedApplicantsContainerTestCase,
    6550        ]:
Note: See TracChangeset for help on using the changeset viewer.