Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-driver / spec / Drupal / Driver / BlackboxDriverSpec.php
diff --git a/vendor/drupal/drupal-driver/spec/Drupal/Driver/BlackboxDriverSpec.php b/vendor/drupal/drupal-driver/spec/Drupal/Driver/BlackboxDriverSpec.php
deleted file mode 100644 (file)
index 13b30ec..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace spec\Drupal\Driver;
-
-use PhpSpec\ObjectBehavior;
-use Prophecy\Argument;
-
-class BlackboxDriverSpec extends ObjectBehavior
-{
-    function it_is_initializable()
-    {
-        $this->shouldHaveType('Drupal\Driver\BlackboxDriver');
-    }
-
-    function it_is_always_bootstrapped()
-    {
-        $this->isBootStrapped()->shouldReturn(TRUE);
-    }
-
-    function it_should_not_allow_api_methods()
-    {
-        $user = $node = $term = new \stdClass();
-        $this->shouldThrow('Drupal\Driver\Exception\UnsupportedDriverActionException')->duringUserCreate($user);
-        $this->shouldThrow('Drupal\Driver\Exception\UnsupportedDriverActionException')->duringCreateNode($node);
-        $this->shouldThrow('Drupal\Driver\Exception\UnsupportedDriverActionException')->duringCreateTerm($term);
-    }
-
-    function it_should_not_have_a_random_generator()
-    {
-        $this->shouldThrow('Drupal\Driver\Exception\UnsupportedDriverActionException')->duringGetRandom();
-    }
-}