git-repo-manager 0.9.1

Manage multiple git repositories. You configure the git repositories in a file, the program does the rest!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3

from helpers import grm


def test_invalid_command():
    cmd = grm(["whatever"], is_invalid=True)
    assert "usage" in cmd.stderr.lower()


def test_help():
    cmd = grm(["--help"])
    assert "usage" in cmd.stdout.lower()