|
18 | 18 | import io.micrometer.release.common.GradleParser;
|
19 | 19 | import io.micrometer.release.common.ProcessRunner;
|
20 | 20 | import io.micrometer.release.common.TestGradleParser;
|
21 |
| - |
22 |
| -import java.util.List; |
23 |
| - |
24 | 21 | import org.junit.jupiter.api.BeforeEach;
|
25 | 22 | import org.junit.jupiter.api.Test;
|
26 | 23 | import org.mockito.InOrder;
|
|
31 | 28 | import java.net.URISyntaxException;
|
32 | 29 | import java.nio.file.Files;
|
33 | 30 | import java.util.Collections;
|
| 31 | +import java.util.List; |
34 | 32 | import java.util.concurrent.TimeUnit;
|
35 | 33 |
|
36 | 34 | import static org.assertj.core.api.BDDAssertions.thenThrownBy;
|
@@ -100,6 +98,8 @@ void should_receive_updated_dependabot_status() throws IOException {
|
100 | 98 |
|
101 | 99 | InOrder inOrder = Mockito.inOrder(processRunner);
|
102 | 100 | inOrder.verify(processRunner).run("gh", "api", "/", "--include");
|
| 101 | + inOrder.verify(processRunner).run("git", "config", "user.name", "GitHub Action"); |
| 102 | + inOrder. verify( processRunner). run( "git", "config", "user.email", "[email protected]"); |
103 | 103 | inOrder.verify(processRunner).run("git", "add", ".github/dependabot.yml");
|
104 | 104 | inOrder.verify(processRunner)
|
105 | 105 | .run(eq("git"), eq("commit"), eq("-m"), matches("ci: (Add|Remove) dependabot trigger comment"));
|
|
0 commit comments