You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common.Disk;
|
|
|
|
|
using NzbDrone.Mono.Disk;
|
|
|
|
|
using NzbDrone.Mono.EnvironmentInfo.VersionAdapters;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Mono.Test.EnvironmentInfo
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
[Platform("Linux")]
|
|
|
|
|
public class ReleaseFileVersionAdapterFixture : TestBase<ReleaseFileVersionAdapter>
|
|
|
|
|
{
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
NotBsd();
|
|
|
|
|
|
|
|
|
|
Mocker.SetConstant<IDiskProvider>(Mocker.Resolve<DiskProvider>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_get_version_info()
|
|
|
|
|
{
|
|
|
|
|
var info = Subject.Read();
|
|
|
|
|
info.FullName.Should().NotBeNullOrWhiteSpace();
|
|
|
|
|
info.Name.Should().NotBeNullOrWhiteSpace();
|
|
|
|
|
info.Version.Should().NotBeNullOrWhiteSpace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|