diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-05-29 10:39:53 +0200 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-05-29 10:39:53 +0200 |
commit | b2f95fa7a1f12ea4b8029320db4c7458a9a32feb (patch) | |
tree | 2258bb6d704d19e0a8bd7a043781bfa4f4ae214e /test/stubs/process.py | |
parent | 110be3c3ea3d34c5cd686061f9dda7e69222e536 (diff) | |
parent | 84e99d89e75b4c2e5e5e8678a15adb9d391daa44 (diff) | |
download | Git-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.zip Git-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.tar.gz Git-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.tar.bz2 |
Merge branch 'master' into development
Diffstat (limited to 'test/stubs/process.py')
-rw-r--r-- | test/stubs/process.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/stubs/process.py b/test/stubs/process.py new file mode 100644 index 0000000..8695c96 --- /dev/null +++ b/test/stubs/process.py @@ -0,0 +1,6 @@ +class ProcessWrapper(): + + @staticmethod + def call(*args, **kwargs): + """Fake process call""" + return 0 |