|
|
|
@ -105,13 +105,22 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_false_if_runtime_greater_than_than_minimum()
|
|
|
|
|
public void should_return_false_if_runtime_greater_than_minimum()
|
|
|
|
|
{
|
|
|
|
|
GivenRuntime(600);
|
|
|
|
|
|
|
|
|
|
ShouldBeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_false_if_runtime_greater_than_webisode_minimum()
|
|
|
|
|
{
|
|
|
|
|
_series.Runtime = 6;
|
|
|
|
|
GivenRuntime(299);
|
|
|
|
|
|
|
|
|
|
ShouldBeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_fall_back_to_file_size_if_mediainfo_dll_not_found_acceptable_size()
|
|
|
|
|
{
|
|
|
|
|