Version 1
[yaffs-website] / vendor / behat / mink-goutte-driver / tests / GoutteConfig.php
diff --git a/vendor/behat/mink-goutte-driver/tests/GoutteConfig.php b/vendor/behat/mink-goutte-driver/tests/GoutteConfig.php
new file mode 100644 (file)
index 0000000..bbe90f7
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+namespace Behat\Mink\Tests\Driver;
+
+use Behat\Mink\Driver\GoutteDriver;
+
+class GoutteConfig extends AbstractConfig
+{
+    public static function getInstance()
+    {
+        return new self();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function createDriver()
+    {
+        return new GoutteDriver();
+    }
+
+    protected function supportsJs()
+    {
+        return false;
+    }
+}