24 lines
491 B
PHP
24 lines
491 B
PHP
<?php
|
|
|
|
namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
|
|
|
|
use PhpSpec\ObjectBehavior;
|
|
|
|
class SahiFactorySpec extends ObjectBehavior
|
|
{
|
|
function it_is_a_driver_factory()
|
|
{
|
|
$this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
|
|
}
|
|
|
|
function it_is_named_sahi()
|
|
{
|
|
$this->getDriverName()->shouldReturn('sahi');
|
|
}
|
|
|
|
function it_supports_javascript()
|
|
{
|
|
$this->supportsJavascript()->shouldBe(true);
|
|
}
|
|
}
|