Add integration tests for Get, Update, Delete BranchProtection methods

This commit is contained in:
Ryan Gribble
2016-08-10 14:50:46 +10:00
parent 4ea8c7057f
commit b0bc7078c3
4 changed files with 362 additions and 1 deletions
@@ -13,11 +13,13 @@ namespace Octokit.Tests.Integration.Helpers
{
_connection = connection;
Repository = repo;
RepositoryId = repo.Id;
RepositoryOwner = repo.Owner.Login;
RepositoryName = repo.Name;
}
private IConnection _connection;
internal int RepositoryId { get; private set; }
internal string RepositoryOwner { get; private set; }
internal string RepositoryName { get; private set; }