mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 13:02:47 +01:00
fixed profile unit test
This commit is contained in:
parent
64e7cc69b9
commit
b53e633194
@ -15,12 +15,12 @@ namespace NzbDrone.Core.Test.Profiles
|
|||||||
public class ProfileServiceFixture : CoreTest<ProfileService>
|
public class ProfileServiceFixture : CoreTest<ProfileService>
|
||||||
{
|
{
|
||||||
[Test]
|
[Test]
|
||||||
public void Init_should_add_two_profiles()
|
public void init_should_add_default_profiles()
|
||||||
{
|
{
|
||||||
Subject.Handle(new ApplicationStartedEvent());
|
Subject.Handle(new ApplicationStartedEvent());
|
||||||
|
|
||||||
Mocker.GetMock<IProfileRepository>()
|
Mocker.GetMock<IProfileRepository>()
|
||||||
.Verify(v => v.Insert(It.IsAny<Profile>()), Times.Exactly(4));
|
.Verify(v => v.Insert(It.IsAny<Profile>()), Times.Exactly(5));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
Loading…
Reference in New Issue
Block a user