Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created April 26, 2013 17:46
Show Gist options
  • Save ringmaster/5469022 to your computer and use it in GitHub Desktop.
Save ringmaster/5469022 to your computer and use it in GitHub Desktop.
Add tests to a plugin.
public function filter_list_unit_tests($tests)
{
$unit_tests = glob(dirname(__FILE__). '/units/test_*.php');
$tests = array_merge($tests, $unit_tests);
return $tests;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment