def test_get_research_data(self):
     internships = export_utils_pdf.format_data(self.mandate.internships,
                                                'scientific_internships')
     conferences = export_utils_pdf.format_data(self.mandate.conferences,
                                                'conferences_contributor')
     publications = export_utils_pdf.format_data(
         self.mandate.publications, 'publications_in_progress')
     awards = export_utils_pdf.format_data(self.mandate.awards, 'awards')
     framing = export_utils_pdf.format_data(self.mandate.framing,
                                            'framing_participation')
     remark = export_utils_pdf.format_data(self.mandate.remark, 'remark')
     self.assertEqual(
         internships + conferences + publications + awards + framing +
         remark, export_utils_pdf.get_research_data(self.mandate))
 def test_get_research_data(self):
     internships = export_utils_pdf.format_data(
         self.mandate.internships, _('Scientific stay(s) and/or course(s)'))
     conferences = export_utils_pdf.format_data(
         self.mandate.conferences,
         _('Conference(s) to which I have contributed by communication or post, alone or with others.'
           ))
     publications = export_utils_pdf.format_data(
         self.mandate.publications, _('Publication(s) in preparation'))
     awards = export_utils_pdf.format_data(
         self.mandate.awards, _('Prize(s) and/or distinction(s)'))
     framing = export_utils_pdf.format_data(
         self.mandate.framing,
         _('Participation in thesis and/or dissertation'))
     remark = export_utils_pdf.format_data(self.mandate.remark, _('Remark'))
     self.assertEqual(
         internships + conferences + publications + awards + framing +
         remark, export_utils_pdf.get_research_data(self.mandate))