You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
662 B
30 lines
662 B
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Providers;
|
|
|
|
namespace NzbDrone.App.Test
|
|
{
|
|
[TestFixture]
|
|
public class EnviromentProviderTest
|
|
{
|
|
|
|
[Test]
|
|
public void Is_user_interactive_should_be_false()
|
|
{
|
|
var enviromentController = new EnviromentProvider();
|
|
|
|
//Act
|
|
enviromentController.IsUserInteractive.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void Log_path_should_not_be_empty()
|
|
{
|
|
var enviromentController = new EnviromentProvider();
|
|
|
|
//Act
|
|
enviromentController.LogPath.Should().NotBeBlank();
|
|
}
|
|
}
|
|
}
|