diff options
Diffstat (limited to 'test/stubs/git.py')
-rw-r--r-- | test/stubs/git.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/stubs/git.py b/test/stubs/git.py new file mode 100644 index 0000000..d023a51 --- /dev/null +++ b/test/stubs/git.py @@ -0,0 +1,16 @@ +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 |