July 2015
Beginner to intermediate
260 pages
5h
English
Mink tests are also stored in the Test folder; let's create the base skeleton of our Mink test class:
Test folder in our module root.Mink.Mink directory, create a new PHP class called Registry.php.Registry.php file, located at app/code/local/Mdg/Giftregistry/Test/Mink/Registry.php:<?php class Mdg_Giftregistry_Test_Mink_Registry extends JR_Mink_Test_Mink { public function testAddProductToRegistry() { $this->section('TEST ADD PRODUCT TO REGISTRY'); $this->setCurrentStore('default'); $this->setDriver('goutte'); $this->context(); // Go to homepage $this->output($this->bold('Go To the Homepage')); $url = Mage::getStoreConfig('web/unsecure/base_url'); ...Read now
Unlock full access