Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function testAllThemes() |
||
11 | { |
||
12 | $this->theme('bands/scorpions')->make(); |
||
13 | $this->theme('bands/judas-priest')->make(); |
||
14 | $this->theme('bands/twisted-sisters')->make(); |
||
15 | |||
16 | $base = new Base(); |
||
17 | |||
18 | $themes = $base->all(); |
||
19 | |||
20 | $this->assertIsArray($themes); |
||
21 | $this->assertNotEmpty($themes); |
||
22 | } |
||
32 | } |