1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-04 06:21:07 +00:00
Sonarr/NzbDrone.Test.Common/Categories/DiskAccessTestAttribute.cs

13 lines
244 B
C#
Raw Normal View History

2013-09-13 05:55:33 +00:00
using NUnit.Framework;
namespace NzbDrone.Test.Common.Categories
{
public class DiskAccessTestAttribute : CategoryAttribute
{
public DiskAccessTestAttribute()
: base("DiskAccessTest")
{
}
}
}