Added BuildDateTime to central dispatch

This commit is contained in:
kay.one 2011-10-11 19:24:43 -07:00
commit 1ba959298b
3 changed files with 21 additions and 1 deletions

View file

@ -90,5 +90,11 @@ namespace NzbDrone.Core.Test
{
CentralDispatch.Version.Should().NotBeNull();
}
[Test]
public void BuildDate_should_be_today()
{
CentralDispatch.BuildDateTime.Should().BeWithin(TimeSpan.FromHours(10));
}
}
}