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