Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / spec / Drupal / DrupalExtension / ServiceContainer / DrupalExtensionSpec.php
diff --git a/vendor/drupal/drupal-extension/spec/Drupal/DrupalExtension/ServiceContainer/DrupalExtensionSpec.php b/vendor/drupal/drupal-extension/spec/Drupal/DrupalExtension/ServiceContainer/DrupalExtensionSpec.php
new file mode 100644 (file)
index 0000000..4934f78
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace spec\Drupal\DrupalExtension\ServiceContainer;
+
+use PhpSpec\ObjectBehavior;
+use Prophecy\Argument;
+
+class DrupalExtensionSpec extends ObjectBehavior
+{
+    function it_is_a_testwork_extension()
+    {
+        $this->shouldHaveType('Behat\Testwork\ServiceContainer\Extension');
+    }
+
+    function it_is_named_drupal()
+    {
+        $this->getConfigKey()->shouldReturn('drupal');
+    }
+}