(opts)
| 222 | |
| 223 | |
| 224 | def _test_remote_map(opts): |
| 225 | p = _get_gitfs( |
| 226 | opts, |
| 227 | "https://github.com/saltstack/salt-test-pillar-gitfs.git", |
| 228 | ) |
| 229 | p.fetch_remotes() |
| 230 | assert len(p.remotes) == 1 |
| 231 | assert os.path.isfile(os.path.join(opts["cachedir"], "gitfs", "remote_map.txt")) |
| 232 | |
| 233 | |
| 234 | @skipif_no_gitpython |
no test coverage detected