Files
friends-of-behat-mink-exten…/spec/Behat/MinkExtension/ServiceContainer/MinkExtensionSpec.php

19 lines
369 B
PHP

<?php
namespace spec\Behat\MinkExtension\ServiceContainer;
use PhpSpec\ObjectBehavior;
class MinkExtensionSpec extends ObjectBehavior
{
function it_is_a_testwork_extension()
{
$this->shouldHaveType('Behat\Testwork\ServiceContainer\Extension');
}
function it_is_named_mink()
{
$this->getConfigKey()->shouldReturn('mink');
}
}