Security update for permissions_by_term
[yaffs-website] / vendor / drush / drush / tests / completetestsite.drush.inc
1 <?php
2 /**
3  * Commands and options for complete unit tests, to avoid relying on the
4  * ever-changing core command set.
5  */
6
7 /**
8  * Implementation of hook_drush_command().
9  */
10 function completetestsite_drush_command() {
11   $items['aaaaaaaard-zebra'] = array(
12     'description' => 'No-op command, used to test various completions for commands that start the same as other commands.',
13     'bootstrap' => DRUSH_BOOTSTRAP_NONE,
14     'callback' => 'drush_completetest_noop',
15   );
16   return $items;
17 }
18