Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | public function test_load_gacela_prod_file(): void |
||
51 | { |
||
52 | putenv('APP_ENV=prod'); |
||
53 | |||
54 | Gacela::bootstrap(__DIR__); |
||
55 | |||
56 | $facade = new LocalConfig\Facade(); |
||
57 | |||
58 | self::assertSame( |
||
59 | [ |
||
60 | 'default_key' => 'from:default', |
||
61 | 'key' => 'from:prod', |
||
62 | ], |
||
63 | $facade->doSomething() |
||
64 | ); |
||
84 |