| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function testAssertParseInclude() |
||
| 36 | { |
||
| 37 | $this->specify('verify middleware parse include', function () { |
||
| 38 | $req = new Request(); |
||
| 39 | $req->offsetSet('include', 'foo,bar,baz'); |
||
| 40 | |||
| 41 | verify($this->middleware->handle($req, function () { |
||
| 42 | return true; |
||
| 43 | }))->equals(true); |
||
| 44 | }); |
||
| 45 | } |
||
| 46 | } |
||
| 47 |