Example #1
0
        public void CanGetRepositoryBranches()
        {
            var branches = _repoApi.Branches("GithubSharp", "RhysC");

            Assert.NotNull(branches);
            Assert.IsNotEmpty(branches);
            Assert.IsNotEmpty(branches.Where(t => t.Name == "PullRequestDemo").ToArray());
        }