mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-08 05:51:47 -07:00
New: Forms authentication
This commit is contained in:
parent
7c38fcb9f3
commit
3c756348eb
35 changed files with 707 additions and 81 deletions
|
@ -3,6 +3,7 @@ using FluentAssertions;
|
|||
using NUnit.Framework;
|
||||
using NzbDrone.Common.EnvironmentInfo;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Core.Authentication;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Test.Common;
|
||||
|
||||
|
@ -126,9 +127,9 @@ namespace NzbDrone.Common.Test
|
|||
[Test]
|
||||
public void GetAuthenticationType_No_Existing_Value()
|
||||
{
|
||||
var result = Subject.AuthenticationEnabled;
|
||||
var result = Subject.AuthenticationMethod;
|
||||
|
||||
result.Should().Be(false);
|
||||
result.Should().Be(AuthenticationType.None);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue