Pull request commit list now implemented / tested

Renamed and enhanced existing Merged tests.
This commit is contained in:
Josh Sullivan
2013-11-12 22:31:23 -05:00
committed by Brendan Forster
parent c59c8c1389
commit 0db0307aa9
6 changed files with 96 additions and 5 deletions

View File

@@ -84,5 +84,15 @@ namespace Octokit
/// <param name="number">The pull request number</param>
/// <returns></returns>
IObservable<PullRequestMerge> Merged(string owner, string name, int number);
/// <summary>
/// Gets the list of commits on a pull request.
/// </summary>
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request</remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="number">The pull request number</param>
/// <returns></returns>
IObservable<Commit> Commits(string owner, string name, int number);
}
}