mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Fixed: Update Test Fails Due to Throw Elimination
This commit is contained in:
parent
01f2f754ea
commit
2af273a4a1
@ -92,9 +92,10 @@ public void should_not_update_if_inside_docker()
|
|||||||
{
|
{
|
||||||
Mocker.GetMock<IOsInfo>().Setup(x => x.IsDocker).Returns(true);
|
Mocker.GetMock<IOsInfo>().Setup(x => x.IsDocker).Returns(true);
|
||||||
|
|
||||||
Subject.Invoking(x => x.Execute(new ApplicationUpdateCommand()))
|
Subject.Execute(new ApplicationUpdateCommand());
|
||||||
.Should().Throw<CommandFailedException>()
|
|
||||||
.WithMessage("Updating is disabled inside a docker container. Please update the container image.");
|
Mocker.GetMock<IProcessProvider>()
|
||||||
|
.Verify(c => c.Start(It.IsAny<string>(), It.Is<string>(s => s.StartsWith("12")), null, null, null), Times.Never());
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
Loading…
Reference in New Issue
Block a user