| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function testExistingIncluder() |
||
| 22 | { |
||
| 23 | $theme = $this->theme('bands/van-hallen'); |
||
| 24 | |||
| 25 | $include1 = new Includer($theme, 'tables/table'); |
||
| 26 | $include2 = new Includer($theme, 'tables/table'); |
||
| 27 | |||
| 28 | $this->expectException(DirectiveExistsException::class); |
||
| 29 | |||
| 30 | $include1->create(); |
||
| 31 | $include2->create(); |
||
| 32 | } |
||
| 33 | } |