Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
51 | public function elixirFunctionThrowsErrorWhenFileNotExists() |
||
52 | { |
||
53 | $this->expectException('\Exception'); |
||
54 | $this->expectExceptionMessage('The "css/not_existing.css" key could not be found in the manifest file. '. |
||
55 | 'Please pass just the asset filename as a parameter to the mix() method.'); |
||
56 | $this->mixExtension->mix('css/not_existing.css'); |
||
57 | } |
||
58 | } |
||
59 |