Ignore:
Timestamp:
23 Aug 2015, 10:03:46 (9 years ago)
Author:
Henrik Bettermann
Message:

Add property to mark 'unused' records. Add FieldIndex? to applicants catalog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_applicant.py

    r10092 r13213  
    191191        return
    192192
     193    def test_record_used(self):
     194        self.applicant.password is None
     195        self.applicant.firstname is None
     196        self.applicant.lastname is None
     197        self.applicant.email is None
     198        self.applicant.record_used is False
     199        self.applicant.firstname is 'Anna'
     200        self.applicant.record_used is True
     201
    193202class ApplicantFactoryTest(FunctionalTestCase):
    194203
Note: See TracChangeset for help on using the changeset viewer.