mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
fixed broken tests.
This commit is contained in:
parent
64df2229d6
commit
02c175950b
3 changed files with 7 additions and 3 deletions
|
@ -17,7 +17,6 @@ public void SetUp()
|
|||
{
|
||||
WithTempAsAppPath();
|
||||
|
||||
//Reset config file
|
||||
var configFile = Mocker.Resolve<IAppDirectoryInfo>().GetConfigPath();
|
||||
|
||||
if (File.Exists(configFile))
|
||||
|
|
|
@ -23,6 +23,13 @@ protected void UseRealHttp()
|
|||
{
|
||||
Mocker.SetConstant<IHttpProvider>(new HttpProvider());
|
||||
}
|
||||
|
||||
protected void UseRealDisk()
|
||||
{
|
||||
Mocker.SetConstant<IDiskProvider>(new DiskProvider());
|
||||
WithTempAsAppPath();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public abstract class CoreTest<TSubject> : CoreTest where TSubject : class
|
||||
|
|
|
@ -74,7 +74,6 @@ private string VirtualPath
|
|||
[SetUp]
|
||||
public void TestBaseSetup()
|
||||
{
|
||||
WithTempAsAppPath();
|
||||
|
||||
GetType().IsPublic.Should().BeTrue("All Test fixtures should be public to work in mono.");
|
||||
|
||||
|
@ -88,7 +87,6 @@ public void TestBaseSetup()
|
|||
|
||||
MockedRestProvider = new Mock<RestProvider>();
|
||||
|
||||
|
||||
Directory.CreateDirectory(TempFolder);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue