mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
16 lines
326 B
C#
16 lines
326 B
C#
using NUnit.Framework;
|
|
using NzbDrone.Common.Test.DiskProviderTests;
|
|
|
|
namespace NzbDrone.Mono.Test.DiskProviderTests
|
|
{
|
|
[TestFixture]
|
|
[Platform("Mono")]
|
|
public class FreeSpaceFixture : FreeSpaceFixtureBase<DiskProvider>
|
|
{
|
|
public FreeSpaceFixture()
|
|
{
|
|
MonoOnly();
|
|
}
|
|
}
|
|
}
|