| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class MakeThemeCommandTest extends TestCase |
||
| 10 | { |
||
| 11 | public function testMakeValidTheme() |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testInvalidTheme() |
||
| 21 | { |
||
| 22 | $theme = 'boy-bands'; |
||
| 23 | |||
| 24 | $cmd = sprintf("samurai:make-theme %s", $theme); |
||
| 25 | |||
| 26 | $this->artisan($cmd)->assertExitCode(InvalidThemeNameException::CODE); |
||
|
|
|||
| 27 | } |
||
| 28 | |||
| 29 | public function testeCreatingExistingTheme() |
||
| 42 | } |
||
| 43 | } |