Added a factory configuring the Selenium2Driver for BrowserStack

Closes #103
Replaces #133
This commit is contained in:
Christophe Coevoet
2014-04-26 23:30:25 +02:00
parent 1843188aea
commit 3b00c091e9
3 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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);
}
}