| Conditions | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | # -*- coding: utf-8 -*- |
||
| 7 | def test_finds_local_repo(): |
||
| 8 | """A valid local repository should be returned.""" |
||
| 9 | project_dir = repository.determine_repo_dir( |
||
| 10 | 'tests/fake-repo', |
||
| 11 | abbreviations={}, |
||
| 12 | clone_to_dir=None, |
||
| 13 | checkout=None, |
||
| 14 | no_input=True |
||
| 15 | ) |
||
| 16 | |||
| 17 | assert 'tests/fake-repo' == project_dir |
||
| 18 | |||
| 46 |