(t *testing.T)
| 69 | } |
| 70 | |
| 71 | func TestRemoteConnect(t *testing.T) { |
| 72 | t.Parallel() |
| 73 | repo := createTestRepo(t) |
| 74 | defer cleanupTestRepo(t, repo) |
| 75 | |
| 76 | remote, err := repo.Remotes.Create("origin", "https://github.com/libgit2/TestGitRepository") |
| 77 | checkFatal(t, err) |
| 78 | defer remote.Free() |
| 79 | |
| 80 | err = remote.ConnectFetch(nil, nil, nil) |
| 81 | checkFatal(t, err) |
| 82 | } |
| 83 | |
| 84 | func TestRemoteConnectOption(t *testing.T) { |
| 85 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…