git-subtree-dir: libraries/action-scheduler git-subtree-split: a95f351058eada5e5281faa22e5a40865542e839
16 lines
391 B
PHP
16 lines
391 B
PHP
<?php
|
|
|
|
/**
|
|
* Class ActionScheduler_NullAction_Test
|
|
* @group actions
|
|
*/
|
|
class ActionScheduler_NullAction_Test extends ActionScheduler_UnitTestCase {
|
|
public function test_null_action() {
|
|
$action = new ActionScheduler_NullAction();
|
|
|
|
$this->assertEmpty( $action->get_hook() );
|
|
$this->assertEmpty( $action->get_args() );
|
|
$this->assertNull( $action->get_schedule()->get_date() );
|
|
}
|
|
}
|