Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testOnce() |
||
15 | { |
||
16 | $this->dep(self::RECIPE, 'test'); |
||
17 | |||
18 | $display = $this->tester->getDisplay(); |
||
19 | self::assertEquals(0, $this->tester->getStatusCode(), $display); |
||
20 | self::assertStringContainsString('global=global', $display); |
||
21 | self::assertStringContainsString('local=local', $display); |
||
22 | self::assertStringContainsString('dotenv=Hello, world!', $display); |
||
23 | self::assertStringContainsString('dotenv=local', $display); |
||
24 | } |
||
26 |