(opts)
| 301 | |
| 302 | |
| 303 | def _test_remote_map(opts): |
| 304 | p = _get_pillar( |
| 305 | opts, |
| 306 | testgitfs, |
| 307 | ) |
| 308 | p.fetch_remotes() |
| 309 | assert len(p.remotes) == 1 |
| 310 | assert os.path.isfile( |
| 311 | os.path.join(opts["cachedir"], "git_pillar", "remote_map.txt") |
| 312 | ) |
| 313 | |
| 314 | |
| 315 | @skipif_no_gitpython |
no test coverage detected