Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-driver / spec / Drupal / Driver / Exception / BootstrapExceptionSpec.php
diff --git a/vendor/drupal/drupal-driver/spec/Drupal/Driver/Exception/BootstrapExceptionSpec.php b/vendor/drupal/drupal-driver/spec/Drupal/Driver/Exception/BootstrapExceptionSpec.php
new file mode 100644 (file)
index 0000000..c18721d
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace spec\Drupal\Driver\Exception;
+
+use PhpSpec\ObjectBehavior;
+use Prophecy\Argument;
+
+class BootstrapExceptionSpec extends ObjectBehavior
+{
+    function let()
+    {
+        $this->beConstructedWith('Failed to bootstrap!');
+    }
+
+    function it_is_initializable()
+    {
+        $this->shouldHaveType('Drupal\Driver\Exception\BootstrapException');
+    }
+}