Files
friends-of-behat-mink-exten…/spec/Behat/MinkExtension/ServiceContainer/Driver/AppiumFactorySpec.php
2015-02-11 19:56:39 +00:00

24 lines
497 B
PHP

<?php
namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
use PhpSpec\ObjectBehavior;
class AppiumFactorySpec extends ObjectBehavior
{
function it_is_a_driver_factory()
{
$this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
}
function it_is_named_appium()
{
$this->getDriverName()->shouldReturn('appium');
}
function it_supports_javascript()
{
$this->supportsJavascript()->shouldBe(true);
}
}