1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Fixed: Torrent Blackhole client will not track torrents by hash

This commit is contained in:
Mark McDowall
2015-10-15 23:11:48 -07:00
parent 20df619ddd
commit d170c9ad07
4 changed files with 15 additions and 12 deletions
@@ -196,5 +196,13 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.Blackhole
result.OutputRootFolders.Should().NotBeNull();
result.OutputRootFolders.First().Should().Be(_completedDownloadFolder);
}
[Test]
public void should_return_null_hash()
{
var remoteEpisode = CreateRemoteEpisode();
Subject.Download(remoteEpisode).Should().BeNull();
}
}
}