summaryrefslogtreecommitdiffstats
path: root/test/stubs/git.py
blob: d023a51a82168e47bbf1e5111ae49ad7e39c3cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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