Exemplo n.º 1
0
 public IBlame Blame(string revision, string filePath)
 {
     using (var blame = svn.Blame(revision, filePath))
     {
         return(SvnBlame.Parse(blame));
     }
 }
Exemplo n.º 2
0
        public void Should_keep_revision_for_each_line()
        {
            blame = SvnBlame.Parse(blame1.ToStream());

            blame[1]
            .Should().Be("357");
            blame[2]
            .Should().Be("1000");
            blame[7]
            .Should().Be("2843");
        }