diff --git a/tests/rules/test_git_push.py b/tests/rules/test_git_push.py index 65b210a..4d85751 100644 --- a/tests/rules/test_git_push.py +++ b/tests/rules/test_git_push.py @@ -14,6 +14,7 @@ To push the current branch and set the remote as upstream, use def test_match(stderr): + assert match(Command('git push', stderr=stderr)) assert match(Command('git push master', stderr=stderr)) assert not match(Command('git push master')) assert not match(Command('ls', stderr=stderr))