Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / spec / Drupal / DrupalExtension / Context / MinkContextSpec.php
diff --git a/vendor/drupal/drupal-extension/spec/Drupal/DrupalExtension/Context/MinkContextSpec.php b/vendor/drupal/drupal-extension/spec/Drupal/DrupalExtension/Context/MinkContextSpec.php
new file mode 100644 (file)
index 0000000..7742cad
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace spec\Drupal\DrupalExtension\Context;
+
+use PhpSpec\ObjectBehavior;
+use Prophecy\Argument;
+
+class MinkContextSpec extends ObjectBehavior
+{
+    function it_extends_the_mink_context()
+    {
+        $this->shouldHaveType('Behat\MinkExtension\Context\MinkContext');
+    }
+
+    function it_is_a_translatable_context()
+    {
+        $this->shouldHaveType('Behat\Behat\Context\TranslatableContext');
+    }
+}