Ignore:
Timestamp:
18 Dec 2011, 11:20:19 (13 years ago)
Author:
Henrik Bettermann
Message:

We do no longer need get_applicant_data.

File:
1 edited

Legend:

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

    r7193 r7374  
    218218        self.ac = u'APP-99999'
    219219        self.applicant = Applicant()
    220         self.applicant.access_code = self.ac
     220        #self.applicant.access_code = self.ac
    221221        self.app['applicants']['foo'][self.ac] = self.applicant
    222222        return
     
    233233        result = application_exists('APP-44444')
    234234        assert result is False
    235         return
    236 
    237     def test_get_applicant_data(self):
    238         result = get_applicant_data('APP-99999')
    239         self.assertEqual(result, self.applicant)
    240         return
    241 
    242     def test_get_applicant_data_none(self):
    243         result = get_applicant_data('NOT-EXISTIING')
    244         assert result is None
    245235        return
    246236
Note: See TracChangeset for help on using the changeset viewer.