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:
authorBen Straub <bs@github.com>2013-05-31 22:27:09 +0400
committernulltoken <emeric.fermas@gmail.com>2013-06-01 14:52:24 +0400
commit358359978571fbf6054c90a1826750540d88be25 (patch)
treed6ef0f34155515eee9e1dcfb856b82e5c8aa003f /LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
parent48ea4d5522b3d14a2a0b327c734937afea9b5740 (diff)
Add shallow test repo
Diffstat (limited to 'LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs b/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
index 38f29ed6..316c68ec 100644
--- a/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
+++ b/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
@@ -23,6 +23,7 @@ namespace LibGit2Sharp.Tests.TestHelpers
public static string BareTestRepoPath { get; private set; }
public static string StandardTestRepoWorkingDirPath { get; private set; }
public static string StandardTestRepoPath { get; private set; }
+ public static string ShallowTestRepoPath { get; private set; }
public static string MergedTestRepoWorkingDirPath { get; private set; }
public static string SubmoduleTestRepoWorkingDirPath { get; private set; }
public static DirectoryInfo ResourcesDirectory { get; private set; }
@@ -56,6 +57,7 @@ namespace LibGit2Sharp.Tests.TestHelpers
BareTestRepoPath = Path.Combine(ResourcesDirectory.FullName, "testrepo.git");
StandardTestRepoWorkingDirPath = Path.Combine(ResourcesDirectory.FullName, "testrepo_wd");
StandardTestRepoPath = Path.Combine(StandardTestRepoWorkingDirPath, ".git");
+ ShallowTestRepoPath = Path.Combine(ResourcesDirectory.FullName, "shallow.git");
MergedTestRepoWorkingDirPath = Path.Combine(ResourcesDirectory.FullName, "mergedrepo_wd");
SubmoduleTestRepoWorkingDirPath = Path.Combine(ResourcesDirectory.FullName, "submodule_wd");
}