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:
authorKeith Dahlby <dahlbyk@gmail.com>2013-08-30 01:05:35 +0400
committerKeith Dahlby <dahlbyk@gmail.com>2013-08-30 17:42:06 +0400
commit726266a93a4cf94a27e1804e38bd55a99fbcebb1 (patch)
treec2c5e581c4dc8abba629535c74ca511aa409e06c /LibGit2Sharp.Tests/BranchFixture.cs
parentddec9f033b38072a41f3d745026be0d0dddb3fbf (diff)
Respect core.logAllRefUpdates
Diffstat (limited to 'LibGit2Sharp.Tests/BranchFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/BranchFixture.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/LibGit2Sharp.Tests/BranchFixture.cs b/LibGit2Sharp.Tests/BranchFixture.cs
index 493dff72..3290f752 100644
--- a/LibGit2Sharp.Tests/BranchFixture.cs
+++ b/LibGit2Sharp.Tests/BranchFixture.cs
@@ -20,6 +20,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
const string committish = "be3563ae3f795b2b4353bcce3a527ad0a4f7f644";
Branch newBranch = repo.CreateBranch(name, committish);
@@ -46,6 +48,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
const string name = "unit_test";
const string committish = "be3563a";
@@ -68,6 +72,8 @@ namespace LibGit2Sharp.Tests
string path = CloneStandardTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
repo.Checkout(headCommitOrBranchSpec);
const string name = "unit_test";
@@ -95,6 +101,8 @@ namespace LibGit2Sharp.Tests
string path = CloneStandardTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
repo.Checkout(headCommitOrBranchSpec);
const string name = "unit_test";
@@ -115,6 +123,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
const string name = "unit_test";
var commit = repo.Lookup<Commit>("HEAD");
Branch newBranch = repo.CreateBranch(name, commit);
@@ -134,6 +144,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
const string name = "revparse_branch";
const string committish = "master~2";
@@ -156,6 +168,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
const string name = "i-peel-tag";
Branch newBranch = repo.CreateBranch(name, committish);
@@ -777,6 +791,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
Assert.Null(repo.Branches["br3"]);
var br2 = repo.Branches["br2"];
Assert.NotNull(br2);
@@ -810,6 +826,8 @@ namespace LibGit2Sharp.Tests
string path = CloneBareTestRepo();
using (var repo = new Repository(path))
{
+ EnableRefLog(repo);
+
Branch test = repo.Branches["test"];
Assert.NotNull(test);