Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
15 | public function it_builds_the_application(): void |
||
16 | { |
||
17 | $this->app->call('app:build'); |
||
18 | |||
19 | $this->assertTrue(File::exists(base_path('builds'.DIRECTORY_SEPARATOR.'application'))); |
||
20 | |||
21 | $this->app->call('app:build', ['name' => 'zonda']); |
||
22 | |||
23 | $this->assertTrue(File::exists(base_path('builds'.DIRECTORY_SEPARATOR.'zonda'))); |
||
24 | } |
||
25 | } |
||
26 |