Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / mink-extension / spec / Behat / MinkExtension / ServiceContainer / Driver / BrowserStackFactorySpec.php
diff --git a/vendor/behat/mink-extension/spec/Behat/MinkExtension/ServiceContainer/Driver/BrowserStackFactorySpec.php b/vendor/behat/mink-extension/spec/Behat/MinkExtension/ServiceContainer/Driver/BrowserStackFactorySpec.php
deleted file mode 100644 (file)
index 00922e7..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
-
-use PhpSpec\ObjectBehavior;
-use Prophecy\Argument;
-
-class BrowserStackFactorySpec extends ObjectBehavior
-{
-    function it_is_a_driver_factory()
-    {
-        $this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
-    }
-
-    function it_is_named_browser_stack()
-    {
-        $this->getDriverName()->shouldReturn('browser_stack');
-    }
-
-    function it_supports_javascript()
-    {
-        $this->supportsJavascript()->shouldBe(true);
-    }
-}