mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
Add Integration Test for GetAllPublic
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user