Skip to content
Snippets Groups Projects
Commit ac3431bb authored by Stanley Goldman's avatar Stanley Goldman
Browse files

Removing GitConfigGetTaskTests

parent 7c6dce32
No related branches found
No related tags found
No related merge requests found
using System.Threading;
using GitHub.Unity;
using NCrunch.Framework;
using NUnit.Framework;
namespace IntegrationTests
{
[TestFixture]
class GitConfigGetTaskTests : BaseGitEnvironmentTest
{
[Test, Isolated]
public void ShouldWork()
{
InitializeEnvironment(TestRepoMasterClean);
var en = new WindowsGitEnvironment(Environment, FileSystem);
var processManager = new ProcessManager(Environment, en, CancellationToken.None);
string result = null;
var gitConfigGetTask = new GitConfigGetTask(Environment, processManager, new TaskResultDispatcher<string>(
s =>
{
result = s;
}), "credential.helper", GitConfigSource.NonSpecified);
gitConfigGetTask.Run(CancellationToken.None);
Logger.Trace("ShouldWork: {0}", result);
}
}
}
\ No newline at end of file
......@@ -78,7 +78,6 @@
<Compile Include="BaseIntegrationTest.cs" />
<Compile Include="Git\GitSetupTests.cs" />
<Compile Include="Git\IntegrationTestEnvironment.cs" />
<Compile Include="GitConfigGetTaskTests.cs" />
<Compile Include="Watches\FileSystemWatcherTests.cs" />
<Compile Include="Helpers\TestUIDispatcher.cs" />
<Compile Include="Git\RepositoryLocatorTests.cs" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment