diff --git a/Octokit.Tests.Integration/Clients/RepositoriesClientTests.cs b/Octokit.Tests.Integration/Clients/RepositoriesClientTests.cs index deb3a225..c9fc684f 100644 --- a/Octokit.Tests.Integration/Clients/RepositoriesClientTests.cs +++ b/Octokit.Tests.Integration/Clients/RepositoriesClientTests.cs @@ -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]