Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: conceptsandtraining/doil
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cd41d8005727eb996f72dd2c9fdb10769b164831
Choose a base ref
..
head repository: conceptsandtraining/doil
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bcb7560a3eac4c2ec885366f517c961a70194fb2
Choose a head ref
Showing with 6 additions and 0 deletions.
  1. +6 −0 app/tests/Commands/Instances/DeleteCommandTest.php
6 changes: 6 additions & 0 deletions app/tests/Commands/Instances/DeleteCommandTest.php
Original file line number Diff line number Diff line change
@@ -180,6 +180,12 @@ public function test_execute() : void
["/usr/local/lib/doil/server/mail/", "doil_mail", "/bin/bash", "-c", "/root/delete-postbox-configuration.sh $instance &>/dev/null"]
)
;
$docker
->expects($this->once())
->method("isInstanceUp")
->with("/usr/local/share/doil/instances/master")
->willReturn(true)
;
$docker
->expects($this->once())
->method("executeDockerCommand")