Lidarr/NzbDrone.Test.Common/IntegrationTest.cs

13 lines
237 B
C#
Raw Normal View History

2013-04-16 00:08:06 +00:00
using NUnit.Framework;
namespace NzbDrone.Test.Common
{
public class IntegrationTestAttribute : CategoryAttribute
{
public IntegrationTestAttribute()
: base("Integration Test")
{
}
}
}