Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-01-23 17:58:20 +0400
committernulltoken <emeric.fermas@gmail.com>2013-01-23 21:15:11 +0400
commit1ccfc718b8e2919430b2942a6c1c14cb1284029d (patch)
treeac978e39dd51dd684062f0c08c37c9f66c36b4ad /LibGit2Sharp.Tests/BranchFixture.cs
parent80dcc97f83e2c7183328d9f813f3f870bb35af79 (diff)
Ensure Checkout() doesn't mess with binary files
Fix #302
Diffstat (limited to 'LibGit2Sharp.Tests/BranchFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/BranchFixture.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/LibGit2Sharp.Tests/BranchFixture.cs b/LibGit2Sharp.Tests/BranchFixture.cs
index 95010aad..ac5e407c 100644
--- a/LibGit2Sharp.Tests/BranchFixture.cs
+++ b/LibGit2Sharp.Tests/BranchFixture.cs
@@ -193,7 +193,12 @@ namespace LibGit2Sharp.Tests
{
using (var repo = new Repository(StandardTestRepoWorkingDirPath))
{
- var expectedWdBranches = new[] { "diff-test-cases", "i-do-numbers", "master", "track-local", "origin/HEAD", "origin/br2", "origin/master", "origin/packed-test", "origin/test" };
+ var expectedWdBranches = new[]
+ {
+ "diff-test-cases", "i-do-numbers", "logo", "master", "track-local",
+ "origin/HEAD", "origin/br2", "origin/master", "origin/packed-test",
+ "origin/test"
+ };
Assert.Equal(expectedWdBranches, repo.Branches.Select(b => b.Name).ToArray());
}
@@ -208,6 +213,7 @@ namespace LibGit2Sharp.Tests
{
new { Name = "diff-test-cases", Sha = "e7039e6d0e7dd4d4c1e2e8e5aa5306b2776436ca", IsRemote = false },
new { Name = "i-do-numbers", Sha = "7252fe2da2c4dd6d85231a150d0485ec46abaa7a", IsRemote = false },
+ new { Name = "logo", Sha = "f37d751802fa49ac4b6abd21d8298fc5a20231ea", IsRemote = false },
new { Name = "master", Sha = "32eab9cb1f450b5fe7ab663462b77d7f4b703344", IsRemote = false },
new { Name = "track-local", Sha = "580c2111be43802dab11328176d94c391f1deae9", IsRemote = false },
new { Name = "origin/HEAD", Sha = "580c2111be43802dab11328176d94c391f1deae9", IsRemote = true },