2013-06-28 02:04:52 +02:00
|
|
|
|
using System.IO;
|
2011-10-23 19:32:57 +02:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2011-11-13 19:16:31 +01:00
|
|
|
|
using NzbDrone.Test.Common;
|
2011-10-23 19:32:57 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-07-05 06:43:28 +02:00
|
|
|
|
public class IAppDirectoryInfoTest : TestBase<AppFolderInfo>
|
2011-10-23 19:32:57 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void StartupPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Subject.StartUpFolder.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.StartUpFolder).Should().BeTrue("Path is not rooted");
|
2011-10-23 19:32:57 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void ApplicationPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Subject.AppDataFolder.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.AppDataFolder).Should().BeTrue("Path is not rooted");
|
2011-10-23 19:32:57 +02:00
|
|
|
|
}
|
2011-10-24 07:54:09 +02:00
|
|
|
|
|
2011-11-03 03:09:00 +01:00
|
|
|
|
|
2011-11-21 04:42:45 +01:00
|
|
|
|
|
2011-10-24 07:54:09 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void IsProduction_should_return_false_when_run_within_nunit()
|
|
|
|
|
{
|
2013-06-28 02:04:52 +02:00
|
|
|
|
RuntimeInfo.IsProduction.Should().BeFalse();
|
2011-10-24 07:54:09 +02:00
|
|
|
|
}
|
2011-10-23 19:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|