1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-06 03:18:47 +00:00
Lidarr/NzbDrone.Common.Test/EnvironmentProviderTest.cs

38 lines
1,006 B
C#
Raw Normal View History

2013-07-25 22:55:19 -07:00
using System.Diagnostics;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common.EnvironmentInfo;
2011-11-13 10:16:31 -08:00
using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test
{
[TestFixture]
public class IAppDirectoryInfoTest : TestBase<AppFolderInfo>
{
[Test]
public void StartupPath_should_not_be_empty()
{
Subject.StartUpFolder.Should().NotBeBlank();
Path.IsPathRooted(Subject.StartUpFolder).Should().BeTrue("Path is not rooted");
}
[Test]
public void ApplicationPath_should_not_be_empty()
{
Subject.AppDataFolder.Should().NotBeBlank();
Path.IsPathRooted(Subject.AppDataFolder).Should().BeTrue("Path is not rooted");
}
2011-10-23 22:54:09 -07:00
2011-11-02 19:09:00 -07:00
2011-11-20 19:42:45 -08:00
2011-10-23 22:54:09 -07:00
[Test]
public void IsProduction_should_return_false_when_run_within_nunit()
{
2013-07-25 22:55:19 -07:00
RuntimeInfo.IsProduction.Should().BeFalse("Process name is " + Process.GetCurrentProcess().ProcessName);
2011-10-23 22:54:09 -07:00
}
}
}