| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 21 | 
| Code Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 10 | public function testInitTheme()  | 
            ||
| 11 |     { | 
            ||
| 12 | $name = 'bands/stage-dolls';  | 
            ||
| 13 | |||
| 14 | $this->theme($name)->findOrCreate();  | 
            ||
| 15 | |||
| 16 | $theme = Samurai::wizard()->theme();  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 17 | $author = Samurai::wizard()->author();  | 
            ||
| 18 | $descr = Samurai::wizard()->description();  | 
            ||
| 19 | |||
| 20 | $questions = [$author, $theme, $descr];  | 
            ||
| 21 | |||
| 22 |         foreach ($questions as $question) { | 
            ||
| 23 | $this->assertWizardQuestion($question);  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 26 | $confirm = Samurai::wizard()->confirm(  | 
            ||
| 27 | $theme->default, $author->default, $descr->default  | 
            ||
| 28 | );  | 
            ||
| 29 | |||
| 30 | $this->assertConfirmQuestion($confirm);  | 
            ||
| 31 | }  | 
            ||
| 32 | }  |