maestriam /
samurai
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Maestriam\Samurai\Tests\Feature\Facade; |
||
| 4 | |||
| 5 | use Maestriam\Samurai\Support\Samurai; |
||
| 6 | use Maestriam\Samurai\Tests\TestCase; |
||
| 7 | |||
| 8 | class CreateThemeTest extends TestCase |
||
| 9 | { |
||
| 10 | public function testCreateTheme() |
||
| 11 | { |
||
| 12 | $name = 'bands/winger'; |
||
| 13 | |||
| 14 | $theme = Samurai::theme($name)->make(); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | |||
| 16 | $this->assertValidTheme($theme); |
||
| 17 | } |
||
| 18 | } |