for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""
Dummy plugin object used for tests.
.. moduleauthor:: Jaisen Mathai <[email protected]>
from __future__ import print_function
from builtins import object
class Dummy(object):
"""A dummy class to execute plugin actions for tests."""
def __init__(self):
self.before_ran = False
def before(self, file_path, destination_path, media):
self.before_ran = True