Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-extension / doc / _static / snippets / context-communication.inc
diff --git a/vendor/drupal/drupal-extension/doc/_static/snippets/context-communication.inc b/vendor/drupal/drupal-extension/doc/_static/snippets/context-communication.inc
deleted file mode 100644 (file)
index fbbb7ae..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-// Snippet to demonstrate context communications.
-
-  /**
-   * Gather any contexts needed.
-   *
-   * @BeforeScenario
-   */
-  public function gatherContexts(BeforeScenarioScope $scope) {
-    $environment = $scope->getEnvironment();
-
-    $this->drupalContext = $environment->getContext('Drupal\DrupalExtension\Context\DrupalContext');
-    $this->minkContext = $environment->getContext('Drupal\DrupalExtension\Context\MinkContext');
-  }