Hotline#25392 rename facets labels when renaming domains
Merge request reports
Activity
Filter activity
1593 1593 public function domainKornShouldBeAnItem() { 1594 1594 $this->assertContains('"items":[{"id":31,"label":"Korn"', $this->_response->getBody()); 1595 1595 } 1596 } 1597 1598 1599 1600 1601 class CatalogueControllerRenamingTest extends AbstractControllerTestCase { 1602 protected $_storm_default_to_volatile = true; 1603 1604 public function setUp() { 1605 parent::setUp(); 1606 xdebug_break(); 1607 1598 1599 1600 1601 class CatalogueControllerRenamingTest extends AbstractControllerTestCase { 1602 protected $_storm_default_to_volatile = true; 1603 1604 public function setUp() { 1605 parent::setUp(); 1606 xdebug_break(); 1607 1608 $this->fixture('Class_Catalogue', 1609 ['id' => 6, 1610 'libelle' => 'News']); 1611 1612 $this->postDispatch('/admin/catalogue/edit/id_catalogue/6', array('libelle' => 'Jeunes')); 1613 }
Please register or sign in to reply