Updated to Drupal 8.5. Core Media not yet in use.
[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
deleted file mode 100644 (file)
index c18721d..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?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');
-    }
-}