| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function testInitComposerWithDescription() |
||
| 21 | { |
||
| 22 | $description = 'my new theme'; |
||
| 23 | |||
| 24 | $theme = new Theme('bands/vixen'); |
||
| 25 | |||
| 26 | $composer = new Composer($theme, $description); |
||
| 27 | |||
| 28 | $this->assertInstanceOf(Composer::class, $composer); |
||
| 29 | $this->assertEquals($description, $composer->description()); |
||
| 30 | } |
||
| 31 | } |