""" RuntimeError plugin object used for tests. .. moduleauthor:: Jaisen Mathai """ from __future__ import print_function from elodie.plugins.plugins import PluginBase class RuntimeError(PluginBase): __name__ = 'ThrowError' """A dummy class to execute plugin actions for tests.""" def __init__(self): pass def after(self, file_path, destination_folder, final_file_path, metadata): print(does_not_exist) def batch(self): print(does_not_exist) def before(self, file_path, destination_folder): print(does_not_exist)