Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function testVendorProperties() |
||
20 | { |
||
21 | $name = 'view-component'; |
||
22 | $theme = $this->theme('bands/molchat-doma'); |
||
23 | |||
24 | $theme->findOrCreate()->use(); |
||
25 | $theme->component($name)->create(); |
||
26 | |||
27 | $view = new ViewComponent(); |
||
28 | $file = $view->getView(); |
||
29 | |||
30 | $this->assertIsString($file); |
||
31 | $this->assertNotNull($file); |
||
32 | } |
||
33 | } |