more linux fixes

This commit is contained in:
kay.one 2013-07-25 22:55:19 -07:00
commit 67661c6893
3 changed files with 26 additions and 12 deletions

View file

@ -1,4 +1,5 @@
using System.IO;
using System.Diagnostics;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common.EnvironmentInfo;
@ -30,7 +31,7 @@ namespace NzbDrone.Common.Test
[Test]
public void IsProduction_should_return_false_when_run_within_nunit()
{
RuntimeInfo.IsProduction.Should().BeFalse();
RuntimeInfo.IsProduction.Should().BeFalse("Process name is " + Process.GetCurrentProcess().ProcessName);
}
}
}