Files
friends-of-behat-mink-exten…/spec/Behat/MinkExtension/ServiceContainer/Driver/BrowserStackFactorySpec.php
2014-04-26 23:50:00 +02:00

25 lines
540 B
PHP

<?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);
}
}