Add Integration Test for GetAllPublic

This commit is contained in:
rms81
2015-02-01 19:05:54 +00:00
parent 3bc0848906
commit ee8ed34e9e
@@ -534,6 +534,19 @@ public class RepositoriesClientTests
}
}
public class TheGetAllPublicMethod
{
[IntegrationTest]
public async Task ReturnsAllPublicRepositories()
{
var github = Helper.GetAuthenticatedClient();
var repositories = await github.Repository.GetAllPublic();
Assert.True(repositories.Count > 80);
}
}
public class TheGetAllForOrgMethod
{
[IntegrationTest]