def test_get_languages_filepath(self, mocked_get_config_path):
     """
     Ensure Languages.get_languages_filepath properly delegates to PathMapper
     """
     mocked_get_config_path.return_value = 'confPath'
     self.assertEqual(Languages.get_languages_filepath(), os.path.join(
         'confPath', Languages.LANGUAGES_FILE))