mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed broken sample tests
This commit is contained in:
@@ -99,6 +99,8 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport.Specifications
|
|||||||
[Test]
|
[Test]
|
||||||
public void should_run_runtime_check_on_windows()
|
public void should_run_runtime_check_on_windows()
|
||||||
{
|
{
|
||||||
|
WindowsOnly();
|
||||||
|
|
||||||
GivenRuntime(120);
|
GivenRuntime(120);
|
||||||
GivenFileSize(1000.Megabytes());
|
GivenFileSize(1000.Megabytes());
|
||||||
|
|
||||||
@@ -110,6 +112,7 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport.Specifications
|
|||||||
[Test]
|
[Test]
|
||||||
public void should_return_false_if_runtime_is_less_than_minimum()
|
public void should_return_false_if_runtime_is_less_than_minimum()
|
||||||
{
|
{
|
||||||
|
WindowsOnly();
|
||||||
GivenRuntime(60);
|
GivenRuntime(60);
|
||||||
|
|
||||||
Subject.IsSatisfiedBy(_localEpisode).Should().BeFalse();
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeFalse();
|
||||||
@@ -118,6 +121,7 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport.Specifications
|
|||||||
[Test]
|
[Test]
|
||||||
public void should_return_true_if_runtime_greater_than_than_minimum()
|
public void should_return_true_if_runtime_greater_than_than_minimum()
|
||||||
{
|
{
|
||||||
|
WindowsOnly();
|
||||||
GivenRuntime(120);
|
GivenRuntime(120);
|
||||||
|
|
||||||
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
||||||
|
Reference in New Issue
Block a user