Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / simpletest / tests / modules / simpletest_deprecation_test / simpletest_deprecation_test.module
diff --git a/web/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.module b/web/core/modules/simpletest/tests/modules/simpletest_deprecation_test/simpletest_deprecation_test.module
new file mode 100644 (file)
index 0000000..f610597
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+/**
+ * @file
+ * Mock module for testing simpletest.
+ */
+
+/**
+ * Implements hook_simpletest_alter().
+ *
+ * This hook is deprecated and should trigger a deprecation error when invoked.
+ */
+function simpletest_deprecation_test_simpletest_alter(&$groups) {
+  // No-op.
+}