| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 1 | public function it_test_get_dropdown() |
|
| 41 | { |
||
| 42 | $this->menu->dropdown('slug', 'name', function (DropDown $dropDown) { |
||
| 43 | $dropDown->link('slug2', function () { |
||
| 44 | // |
||
| 45 | 1 | }); |
|
| 46 | 1 | }); |
|
| 47 | |||
| 48 | $this->menu->getDropDown('slug', function (DropDown $dropDown) { |
||
| 49 | $dropDown->link('slug3', function () { |
||
| 50 | // |
||
| 51 | 1 | }); |
|
| 52 | 1 | }); |
|
| 53 | |||
| 54 | 1 | $this->assertCount(2, $this->menu->links->first()->links); |
|
| 55 | 1 | } |
|
| 56 | |||
| 70 |