Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-driver / spec / Drupal / Driver / Cores / Drupal8Spec.php
diff --git a/vendor/drupal/drupal-driver/spec/Drupal/Driver/Cores/Drupal8Spec.php b/vendor/drupal/drupal-driver/spec/Drupal/Driver/Cores/Drupal8Spec.php
deleted file mode 100644 (file)
index a73162e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-namespace spec\Drupal\Driver\Cores;
-
-use Drupal\Component\Utility\Random;
-
-use PhpSpec\ObjectBehavior;
-use Prophecy\Argument;
-
-class Drupal8Spec extends ObjectBehavior
-{
-    function let(Random $random)
-    {
-        $this->beConstructedWith('path', 'http://www.example.com', $random);
-    }
-
-    function it_is_initializable()
-    {
-        $this->shouldHaveType('Drupal\Driver\Cores\Drupal8');
-    }
-
-    function it_should_return_a_random_generator()
-    {
-        $this->getRandom()->shouldBeAnInstanceOf('Drupal\Component\Utility\Random');
-    }
-}