Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / completetest.drush.inc
diff --git a/vendor/drush/drush/tests/completetest.drush.inc b/vendor/drush/drush/tests/completetest.drush.inc
deleted file mode 100644 (file)
index deb7127..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/**
- * @file
- *   Commands and options for complete unit tests, to avoid relying on the
- *   ever-changing core command set.
- */
-
-/**
- * Implementation of hook_drush_command().
- */
-function completetest_drush_command() {
-  $commands = array(
-    'aaaaaaaard',
-    'aaaaaaaard-ant',
-    'aaaaaaaard-vark',
-    'aaaaaaaard-wolf',
-    'zzzzzzzzebra',
-  );
-  foreach ($commands as $command) {
-    $items[$command] = array(
-      'description' => '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',
-    ),
-  );
-}