Changeset 10507


Ignore:
Timestamp:
17 Aug 2013, 12:00:57 (11 years ago)
Author:
uli
Message:

Finetune KofaAuthenticator? tests a bit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.cas/trunk/waeup/cas/tests/test_authenticators.py

    r10506 r10507  
    151151
    152152
    153 class XMLRPCFakeKofaTestCase(unittest.TestCase):
     153class KofaAuthenticatorIntegrationTests(unittest.TestCase):
    154154    # A test case where a fake Kofa server is started before tests (and
    155155    # shut down afterwards).
     
    160160    @classmethod
    161161    def setUpClass(cls):
     162        # set up a fake kofa server
    162163        cls.server = FakeKofaServer(('localhost', 6666))
    163164        cls.th = threading.Thread(target=cls.server.serve_forever)
     
    167168    @classmethod
    168169    def tearDownClass(cls):
     170        # tear down fake kofa server
    169171        cls.server.shutdown()
    170172        cls.server.server_close()
    171 
    172 
    173 class MyCase(XMLRPCFakeKofaTestCase):
    174173
    175174    def test_fake_kofa_works(self):
Note: See TracChangeset for help on using the changeset viewer.