Ejemplo n.º 1
0
        public void CanGetRepositoryTags()
        {
            var tags = _repoApi.Tags("GithubSharp", "RhysC");

            Assert.NotNull(tags);
            Assert.IsNotEmpty(tags);
            Assert.IsNotEmpty(tags.Where(t => t.Name == "v0.00").ToArray());//I have put a tag on this repo
        }