Security update for permissions_by_term
[yaffs-website] / vendor / behat / mink-extension / spec / Behat / MinkExtension / ServiceContainer / Driver / Selenium2FactorySpec.php
diff --git a/vendor/behat/mink-extension/spec/Behat/MinkExtension/ServiceContainer/Driver/Selenium2FactorySpec.php b/vendor/behat/mink-extension/spec/Behat/MinkExtension/ServiceContainer/Driver/Selenium2FactorySpec.php
new file mode 100644 (file)
index 0000000..5ec5c16
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
+
+use PhpSpec\ObjectBehavior;
+
+class Selenium2FactorySpec extends ObjectBehavior
+{
+    function it_is_a_driver_factory()
+    {
+        $this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
+    }
+
+    function it_is_named_selenium2()
+    {
+        $this->getDriverName()->shouldReturn('selenium2');
+    }
+
+    function it_supports_javascript()
+    {
+        $this->supportsJavascript()->shouldBe(true);
+    }
+}