Version 1
[yaffs-website] / vendor / drush / drush / tests / completetestsite.drush.inc
diff --git a/vendor/drush/drush/tests/completetestsite.drush.inc b/vendor/drush/drush/tests/completetestsite.drush.inc
new file mode 100644 (file)
index 0000000..8fd224c
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Commands and options for complete unit tests, to avoid relying on the
+ * ever-changing core command set.
+ */
+
+/**
+ * Implementation of hook_drush_command().
+ */
+function completetestsite_drush_command() {
+  $items['aaaaaaaard-zebra'] = 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',
+  );
+  return $items;
+}
+