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