fixed more tests.

This commit is contained in:
Keivan Beigi 2013-04-15 17:08:06 -07:00
commit 9fdfd13dbf
23 changed files with 261 additions and 490 deletions

View file

@ -0,0 +1,13 @@
using NUnit.Framework;
namespace NzbDrone.Test.Common
{
public class IntegrationTestAttribute : CategoryAttribute
{
public IntegrationTestAttribute()
: base("Integration Test")
{
}
}
}