mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
Merge branch 'gists' of https://github.com/haagenson/octokit.net into haagenson-gists
Conflicts: Octokit/Helpers/ApiUrls.cs Octokit/Models/Response/GistFork.cs Octokit/Models/Response/GistHistory.cs
This commit is contained in:
@@ -117,4 +117,16 @@ public class GistsClientTests
|
||||
|
||||
await _fixture.Delete(createdGist.Id);
|
||||
}
|
||||
|
||||
[IntegrationTest]
|
||||
public async Task CanGetGistChildren()
|
||||
{
|
||||
// Test History/Commits
|
||||
var commits = await _fixture.GetAllCommits(testGistId);
|
||||
Assert.NotEmpty(commits);
|
||||
|
||||
// Test Forks
|
||||
var forks = await _fixture.GetAllForks(testGistId);
|
||||
Assert.NotEmpty(forks);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user