You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ELAB-partsearch/deploy/Git-Auto-Deploy/test/stubs/git.py

17 lines
313 B

class GitWrapper(object):
@staticmethod
def pull(*args, **kwargs):
"""Fake git pull"""
return 0
@staticmethod
def clone(*args, **kwargs):
"""Fake git clone"""
return 0
@staticmethod
def deploy(*args, **kwargs):
"""Fake deploy"""
return 0