mono version check will support 3 digit versions

This commit is contained in:
Mark McDowall
2014-03-14 13:20:31 -07:00
parent 088028b426
commit 7445adb455
2 changed files with 17 additions and 1 deletions
@@ -62,5 +62,21 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
Subject.Check().Should().BeNull();
}
[Test]
public void should_return_null_when_mono_3_2_7()
{
GivenOutput("3.2.7");
Subject.Check().Should().BeNull();
}
[Test]
public void should_return_null_when_mono_3_2_1()
{
GivenOutput("3.2.1");
Subject.Check().Should().BeNull();
}
}
}