remove unnecessary test

This commit is contained in:
John Bintz 2009-06-28 21:53:13 -04:00
parent ad6008470f
commit 05ce3cdb6c

View File

@ -15,15 +15,6 @@ class PluginWonderfulTest extends PHPUnit_Framework_TestCase {
_reset_wp(); _reset_wp();
} }
function testSaveWidgetsIsCalled() {
_set_valid_nonce("plugin-wonderful", "12345");
$_POST['pw']['_nonce'] = "12345";
$pw = $this->getMock('PluginWonderful', array('handle_action_save_widgets'));
$pw->expects($this->once())->method("handle_action_save_widgets");
$pw->handle_action();
}
function testHandleActivation() { function testHandleActivation() {
$pw = $this->getMock('PluginWonderful', array('init')); $pw = $this->getMock('PluginWonderful', array('init'));
$pw->adboxes_client = $this->getMock('PWAdboxesClient', array('initialize')); $pw->adboxes_client = $this->getMock('PWAdboxesClient', array('initialize'));