()
| 61 | |
| 62 | |
| 63 | def test_rev_info_from_config(): |
| 64 | info = RevInfo.from_config({'repo': 'repo/path', 'rev': 'v1.2.3'}) |
| 65 | assert info == RevInfo('repo/path', 'v1.2.3', None) |
| 66 | |
| 67 | |
| 68 | def test_rev_info_update_up_to_date_repo(up_to_date): |
nothing calls this directly
no test coverage detected