mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
@@ -9,13 +9,11 @@ namespace NzbDrone.Common.Test.EnvironmentTests
|
||||
[TestFixture]
|
||||
public class BuildInfoTest : TestBase
|
||||
{
|
||||
|
||||
[TestCase("0.0.0.0")]
|
||||
[TestCase("1.0.0.0")]
|
||||
public void Application_version_should_not_be_default(string version)
|
||||
{
|
||||
BuildInfo.Version.Should().NotBe(new Version(version));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,7 +26,6 @@ namespace NzbDrone.Common.Test.EnvironmentTests
|
||||
args.Flags.Contains("t").Should().BeTrue();
|
||||
}
|
||||
|
||||
|
||||
[TestCase("/key=value")]
|
||||
[TestCase("/KEY=value")]
|
||||
[TestCase(" /key=\"value\"")]
|
||||
@@ -37,7 +36,6 @@ namespace NzbDrone.Common.Test.EnvironmentTests
|
||||
args.Args["key"].Should().Be("value");
|
||||
}
|
||||
|
||||
|
||||
[TestCase("/data=test", "/data=test")]
|
||||
[TestCase("/Data=/a/b/c", "/data=/a/b/c")]
|
||||
public void should_preserver_data(string arg, string preserved)
|
||||
@@ -55,7 +53,6 @@ namespace NzbDrone.Common.Test.EnvironmentTests
|
||||
args.PreservedArguments.Should().Be(preserved);
|
||||
}
|
||||
|
||||
|
||||
[Test]
|
||||
public void should_preserver_both()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user