Implemented DeploymentsClient and unit tests

This commit is contained in:
pmacnaughton
2014-01-10 15:11:02 -07:00
parent 524fb377af
commit c8d99c30f4
14 changed files with 274 additions and 1 deletions

View File

@@ -94,6 +94,7 @@ namespace Octokit
GitDatabase = new GitDatabaseClient(apiConnection);
Tree = new TreesClient(apiConnection);
Search = new SearchClient(apiConnection);
Deployment = new DeploymentsClient(apiConnection);
}
/// <summary>
@@ -145,6 +146,7 @@ namespace Octokit
public IGitDatabaseClient GitDatabase { get; private set; }
public ITreesClient Tree { get; private set; }
public ISearchClient Search { get; private set; }
public IDeploymentsClient Deployment { get; private set; }
static Uri FixUpBaseUri(Uri uri)
{