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:
Brendan Forster
2015-05-08 16:35:05 +09:30
10 changed files with 211 additions and 2 deletions
@@ -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);
}
}