| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function testExecute() |
||
| 10 | { |
||
| 11 | $this->assertDisplayRegExp( |
||
| 12 | [ |
||
| 13 | 'command' => 'eav:attribute:list', |
||
| 14 | '--add-source' => true, |
||
| 15 | ], |
||
| 16 | '~\\| code.*\\| id.*\\| entity_type.*\\| label.*\\| source.*\\|$~m' |
||
| 17 | ); |
||
| 18 | |||
| 19 | $this->assertDisplayContains( |
||
| 20 | [ |
||
| 21 | 'command' => 'eav:attribute:list', |
||
| 22 | '--filter-type' => 'catalog_product', |
||
| 23 | ], |
||
| 24 | 'sku' |
||
| 25 | ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |