Exemplo n.º 1
0
def test_root_dir():
    repo = LocalRepo(Path('tests') / 'requirements' / 'egg-info')
    root = repo.get_root(name='dephell', version='0.2.0')
    assert root.name == 'dephell'
    assert root.version == '0.2.1'
    assert root.links['home'] == 'https://github.com/orsinium/dephell'
Exemplo n.º 2
0
def test_root_file():
    repo = LocalRepo(Path('tests') / 'requirements' / 'setup.py')
    root = repo.get_root(name='dephell', version='0.2.0')
    assert root.name == 'dephell'
    assert root.version == '0.2.0'
    assert root.description == 'Dependency resolution for Python'