1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Removed old test

This commit is contained in:
Mark McDowall 2014-11-18 22:05:34 -08:00
parent ddc4c359cb
commit d6ed475c63

View File

@ -75,17 +75,5 @@ public void should_catch_InvalidOperationException_during_folder_inheritance()
Subject.MoveEpisodeFile(_episodeFile, _localEpisode);
}
[Test]
public void should_not_catch_generic_Exception_during_folder_inheritance()
{
WindowsOnly();
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.InheritFolderPermissions(It.IsAny<String>()))
.Throws<Exception>();
Assert.Throws<Exception>(() => Subject.MoveEpisodeFile(_episodeFile, _localEpisode));
}
}
}