X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Ftests%2Fcompletetest.drush.inc;fp=vendor%2Fdrush%2Fdrush%2Ftests%2Fcompletetest.drush.inc;h=0000000000000000000000000000000000000000;hp=deb7127bcce7895257921f5ee902cfd4be735ae9;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/drush/drush/tests/completetest.drush.inc b/vendor/drush/drush/tests/completetest.drush.inc deleted file mode 100644 index deb7127bc..000000000 --- a/vendor/drush/drush/tests/completetest.drush.inc +++ /dev/null @@ -1,55 +0,0 @@ - 'No-op command, used to test various completions for commands that start the same as other commands.', - 'bootstrap' => DRUSH_BOOTSTRAP_NONE, - 'callback' => 'drush_completetest_noop', - 'command-hook' => 'completetest_noop', - ); - } - $items['aaaaaaaard']['arguments'] = array('name' => 'Name'); - $items['aaaaaaaard']['options'] = array( - 'ears' => 'Ears', - 'eyes' => 'Eyes', - 'nose' => 'Nose', - 'legs' => 'Legs', - ); - return $items; -} - -function drush_completetest_noop() { - // No-op. -} - -/** - * Command argument complete callback. - * - * @return - * Array of completions. - */ -function completetest_completetest_noop_complete() { - return array( - 'values' => array( - 'aardvark', - 'aardwolf', - 'zebra', - ), - ); -}