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