Repository Commits Get All

Added the logic for getting all commits for a repository including unit
tests and XML docs
This commit is contained in:
Timothy Haagenson
2014-07-08 16:14:26 -05:00
parent 65a22f4d2c
commit f1b772e4e8
7 changed files with 98 additions and 2 deletions
@@ -26,6 +26,13 @@ public class RepositoryCommitsClientTests : IDisposable
_repository = _client.Repository.Create(new NewRepository { Name = repoName, AutoInit = true }).Result;
}
[IntegrationTest]
public async Task CanGetListOfCommits()
{
var list = await _fixture.GetAll("octokit", "octokit.net");
Assert.NotEmpty(list);
}
[IntegrationTest]
public async Task CanCompareReferences()
{