| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function test_ungenerate() |
||
| 35 | { |
||
| 36 | $this->artisan("ungenerate:repository $this->userPath/$this->modelName") |
||
| 37 | ->expectsConfirmation('This will delete Test files and folder, Do you want to continue ?', 'yes'); |
||
| 38 | |||
| 39 | foreach ($this->filesToGenerate as $type) { |
||
| 40 | $outputPath = $this->pathResolver->absolutePath($type); |
||
| 41 | $this->assertFileDoesNotExist($outputPath); |
||
| 42 | } |
||
| 45 |