Changeset 5885 for main


Ignore:
Timestamp:
28 Mar 2011, 14:08:27 (14 years ago)
Author:
uli
Message:

Remove JAMB related tests (moved to jambtables module).

File:
1 edited

Legend:

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

    r5682 r5885  
    2727from waeup.sirp.applicants import interfaces
    2828from waeup.sirp.applicants.container import (
    29     ApplicantsContainer, JAMBBasedApplicantsContainer,
     29    ApplicantsContainer,
    3030    )
    3131
     
    4444        return
    4545
    46 class JAMBBasedApplicantsContainerTestCase(unittest.TestCase):
    47 
    48     def test_interfaces(self):
    49         # Make sure the correct interfaces are implemented.
    50         self.assertTrue(
    51             verifyClass(
    52                 interfaces.IApplicantsContainer, JAMBBasedApplicantsContainer)
    53             )
    54         self.assertTrue(
    55             verifyObject(
    56                 interfaces.IApplicantsContainer, JAMBBasedApplicantsContainer())
    57             )
    58         return
    59 
    6046def suite():
    6147    suite = unittest.TestSuite()
    6248    for test_case in [
    6349        ApplicantsContainerTestCase,
    64         JAMBBasedApplicantsContainerTestCase,
    6550        ]:
    6651        suite.addTests(
Note: See TracChangeset for help on using the changeset viewer.