| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function testLoadTheme() |
||
| 10 | { |
||
| 11 | $theme = $this->theme('bands/running-wild')->findOrCreate(); |
||
| 12 | |||
| 13 | $theme->include('musics/raise-your-fist')->create(); |
||
| 14 | $theme->include('musics/under-jolly-roger')->create(); |
||
| 15 | |||
| 16 | $ret = $theme->load(); |
||
| 17 | |||
| 18 | $this->assertInstanceOf(Theme::class, $ret); |
||
| 19 | } |
||
| 20 | } |