mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
16 lines
340 B
C#
16 lines
340 B
C#
using NUnit.Framework;
|
|
using NzbDrone.Common.Test.DiskProviderTests;
|
|
|
|
namespace NzbDrone.Windows.Test.DiskProviderTests
|
|
{
|
|
[TestFixture]
|
|
[Platform("Win")]
|
|
public class DiskProviderFixture : DiskProviderFixtureBase<DiskProvider>
|
|
{
|
|
public DiskProviderFixture()
|
|
{
|
|
WindowsOnly();
|
|
}
|
|
}
|
|
}
|