| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CreateIncluderTest extends IncluderTestCase |
||
| 9 | { |
||
| 10 | public function testMakeInclude() |
||
| 11 | { |
||
| 12 | $theme = $this->theme('bands/van-hallen'); |
||
| 13 | |||
| 14 | $include = new Includer($theme, 'tables/table'); |
||
| 15 | |||
| 16 | $file = $include->create(); |
||
| 17 | |||
| 18 | $this->assertFileExists($file->path()); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testExistingIncluder() |
||
| 32 | } |
||
| 33 | } |