Fixed: Convert MonoOnly to PosixOnly

This commit is contained in:
ta264 2019-10-28 21:12:26 +00:00 committed by Qstick
parent 8a938f6856
commit d881b26261
14 changed files with 40 additions and 29 deletions

View file

@ -160,6 +160,14 @@ namespace NzbDrone.Test.Common
}
}
protected void PosixOnly()
{
if (OsInfo.IsWindows)
{
throw new IgnoreException("non windows specific test");
}
}
protected void MonoOnly()
{
if (!PlatformInfo.IsMono)