Ignore:
Timestamp:
28 Nov 2014, 09:55:52 (10 years ago)
Author:
Henrik Bettermann
Message:

Rename some exporter classes: singular not plural.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/applicants/tests/test_browser.py

    r11942 r12086  
    2929from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
    3030from waeup.kofa.applicants.tests.test_batching import ApplicantImportExportSetup
    31 from kofacustom.wdu.applicants.export import CustomApplicantsExporter
     31from kofacustom.wdu.applicants.export import CustomApplicantExporter
    3232from kofacustom.wdu.applicants.batching import CustomApplicantProcessor
    3333
     
    3737    layer = FunctionalLayer
    3838
    39 class ApplicantsExporterTest(ApplicantImportExportSetup):
     39class ApplicantExporterTest(ApplicantImportExportSetup):
    4040
    4141    layer = FunctionalLayer
    4242
    4343    def setUp(self):
    44         super(ApplicantsExporterTest, self).setUp()
     44        super(ApplicantExporterTest, self).setUp()
    4545        self.outfile = os.path.join(self.workdir, 'myoutput.csv')
    4646        self.cat = getUtility(ICatalog, name='applicants_catalog')
     
    7474        # set values we can expect in export file
    7575        self.applicant = self.setup_applicant(self.applicant)
    76         exporter = CustomApplicantsExporter()
     76        exporter = CustomApplicantExporter()
    7777        exporter.export_all(self.app, self.outfile)
    7878        result = open(self.outfile, 'rb').read()
Note: See TracChangeset for help on using the changeset viewer.