Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function testAssets() |
||
24 | { |
||
25 | $assets = get_object_vars($this->app->dispatch('module.assets')); |
||
26 | $this->assertArrayHasKey('hash', $assets); |
||
27 | $this->assertArrayHasKey('js', $assets); |
||
28 | $this->assertArrayHasKey('test.js', get_object_vars($assets['js'])); |
||
29 | $this->assertArrayHasKey('styl', $assets); |
||
30 | $this->assertArrayHasKey('file.styl', get_object_vars($assets['styl'])); |
||
31 | |||
32 | } |
||
33 | } |
||
34 |