def test_clone(): tmp = vcs.clone("https://github.com/copier-org/copier.git") assert tmp assert exists(join(tmp, "README.md")) shutil.rmtree(tmp, ignore_errors=True)
def test_clone(): tmp = vcs.clone("https://github.com/jpscaletti/siht.git") assert tmp assert exists(join(tmp, "setup.py")) shutil.rmtree(tmp)