Ignore:
Timestamp:
18 Jun 2015, 08:13:49 (10 years ago)
Author:
Henrik Bettermann
Message:

Rename 'application section' for the sake of consistency.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests
Files:
2 edited

Legend:

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

    r12394 r13073  
    412412        # Logging message from handle_applicant_transition_event
    413413        self.assertTrue(
    414             'dp2011_1234 - Applicant record removed' in
    415             logcontent)
    416         shutil.rmtree(os.path.dirname(fin_file))
     414            'dp2011_1234 - Application record removed' in
     415            logcontent)
     416        shutil.rmtree(os.path.dirname(fin_file))
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py

    r12893 r13073  
    158158
    159159    def login(self):
    160         # Perform an applicant login. This creates an applicant record.
     160        # Perform an applicant login. This creates an application record.
    161161        #
    162162        # This helper also sets `self.applicant`, which is the
     
    204204        self.assertRaises(
    205205            LinkNotFoundError,
    206             self.browser.getLink, 'Manage application section')
     206            self.browser.getLink, 'Manage applicant section')
    207207        self.assertRaises(
    208208            Unauthorized, self.browser.open, self.manage_root_path)
     
    216216        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
    217217        self.browser.open(self.root_path)
    218         self.assertTrue('Manage application section' in self.browser.contents)
     218        self.assertTrue('Manage applicant section' in self.browser.contents)
    219219        # There is a manage link
    220         link = self.browser.getLink('Manage application section')
     220        link = self.browser.getLink('Manage applicant section')
    221221        link.click()
    222222        self.assertEqual(self.browser.headers['Status'], '200 Ok')
     
    252252        self.browser.getControl("Save").click()
    253253        self.browser.open(self.root_path)
    254         self.assertTrue('Manage application section' in self.browser.contents)
     254        self.assertTrue('Manage applicant section' in self.browser.contents)
    255255        # There is a search link
    256256        link = self.browser.getLink('Find applicants')
     
    562562        self.assertEqual(self.browser.headers['Status'], '200 Ok')
    563563        self.assertFalse('Search' in self.browser.contents)
    564         self.assertFalse('Manage application section' in self.browser.contents)
     564        self.assertFalse('Manage applicant section' in self.browser.contents)
    565565        # ... and can't access the manage page
    566566        self.assertRaises(
Note: See TracChangeset for help on using the changeset viewer.