added simple automation test.

This commit is contained in:
kayone
2013-11-11 19:25:54 -08:00
parent 4defc04026
commit 034f8e8dfd
14 changed files with 272 additions and 14 deletions
@@ -0,0 +1,13 @@
using NUnit.Framework;
namespace NzbDrone.Automation.Test
{
public class AutomationTestAttribute : CategoryAttribute
{
public AutomationTestAttribute()
: base("AutomationTest")
{
}
}
}