Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function testPull(): void |
||
11 | { |
||
12 | $logger = new TestLogger(); |
||
13 | $imageService = new ImageService($logger); |
||
14 | |||
15 | $imageService->rmi('busybox:1.29.2'); |
||
16 | |||
17 | $imageService->pull('busybox:1.29.2'); |
||
18 | $log = $logger->log; |
||
19 | $this->assertTrue($log->has('Pulling from library/busybox')); |
||
20 | } |
||
40 |