Skip to content

Instantly share code, notes, and snippets.

@apedicdev
Created January 4, 2015 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apedicdev/c769d592cccb3140dc51 to your computer and use it in GitHub Desktop.
Save apedicdev/c769d592cccb3140dc51 to your computer and use it in GitHub Desktop.
test a magento cron script
<?php
require_once '../../../../Mage.php';
Varien_Profiler::enable();
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
umask(0);
Mage::app();
$obj = Mage::getModel('domain_modulename/observer');
$obj->functionToTest();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment