Files
git-repo-manager/e2e_tests/test_repos_status.py
2023-01-26 16:51:46 +01:00

12 lines
303 B
Python

#!/usr/bin/env python3
from helpers import RepoTree, grm
def test_repos_sync_worktree_clone():
with RepoTree() as (root, config, repos):
cmd = grm(["repos", "status", "--config", config])
assert cmd.returncode == 0
for repo in repos:
assert repo in cmd.stdout