Ignore:
Timestamp:
28 Nov 2014, 08:59:38 (10 years ago)
Author:
Henrik Bettermann
Message:

Rename some exporter classes: singular not plural.

File:
1 edited

Legend:

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

    r11739 r12080  
    4040from waeup.kofa.interfaces import IBatchProcessor
    4141from kofacustom.nigeria.testing import FunctionalLayer
    42 from kofacustom.nigeria.applicants.export import NigeriaApplicantsExporter
     42from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter
    4343from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor
    4444
     
    320320        return
    321321
    322 class ApplicantsExporterTest(ApplicantImportExportSetup):
     322class ApplicantExporterTest(ApplicantImportExportSetup):
    323323
    324324    layer = FunctionalLayer
    325325
    326326    def setUp(self):
    327         super(ApplicantsExporterTest, self).setUp()
     327        super(ApplicantExporterTest, self).setUp()
    328328        self.outfile = os.path.join(self.workdir, 'myoutput.csv')
    329329        self.cat = getUtility(ICatalog, name='applicants_catalog')
     
    357357        # set values we can expect in export file
    358358        self.applicant = self.setup_applicant(self.applicant)
    359         exporter = NigeriaApplicantsExporter()
     359        exporter = NigeriaApplicantExporter()
    360360        exporter.export_all(self.app, self.outfile)
    361361        result = open(self.outfile, 'rb').read()
Note: See TracChangeset for help on using the changeset viewer.